Skip to content

Commit

Permalink
write debian Date field in UTC rather than local time
Browse files Browse the repository at this point in the history
  • Loading branch information
aiuto committed Jun 29, 2023
1 parent 89465ed commit 4a22c26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/private/deb/make_deb.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ def CreateChanges(output,

changesdata = u''.join([
MakeDebianControlField('Format', '1.8'),
MakeDebianControlField('Date', time.ctime(timestamp)),
MakeDebianControlField('Date', time.asctime(time.gmtime(timestamp))),
MakeDebianControlField('Source', package),
MakeDebianControlField('Binary', package),
MakeDebianControlField('Architecture', architecture),
Expand Down

0 comments on commit 4a22c26

Please sign in to comment.