We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e9a308 commit 141f46eCopy full SHA for 141f46e
test/descriptor/git.dart
@@ -60,8 +60,8 @@ class GitRepoDescriptor extends DirectoryDescriptor {
60
'GIT_COMMITTER_NAME': 'Pub Test',
61
'GIT_COMMITTER_EMAIL': '[email protected]',
62
// To make stable commits ids we fix the date.
63
- 'GIT_COMMITTER_DATE': DateTime(1970).toIso8601String(),
64
- 'GIT_AUTHOR_DATE': DateTime(1970).toIso8601String(),
+ 'GIT_COMMITTER_DATE': DateTime.utc(1970).toIso8601String(),
+ 'GIT_AUTHOR_DATE': DateTime.utc(1970).toIso8601String(),
65
};
66
67
return git.run(
0 commit comments