File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
rezplugins/package_repository Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1+ ## 2.26.4 [[ #562 ] ( https://github.com/nerdvegas/rez/pull/562 )] Fixed Regression in 2.24.0
2+
3+ #### Addressed Issues
4+
5+ * [ #561 ] ( https://github.com/nerdvegas/rez/issues/561 ) timestamp not written to installed package
6+
17## 2.26.3 [[ #560 ] ( https://github.com/nerdvegas/rez/pull/560 )] Package.py permissions issue
28
39#### Addressed Issues
Original file line number Diff line number Diff line change 11
22
33# Update this value to version up Rez. Do not place anything else in this file.
4- _rez_version = "2.26.3 "
4+ _rez_version = "2.26.4 "
55
66try :
77 from rez .vendor .version .version import Version
Original file line number Diff line number Diff line change @@ -1026,7 +1026,7 @@ def _remove_build_keys(obj):
10261026 package_data [key ] = value
10271027
10281028 # timestamp defaults to now if not specified
1029- if "timestamp" not in package_data :
1029+ if not package_data . get ( "timestamp" ) :
10301030 package_data ["timestamp" ] = int (time .time ())
10311031
10321032 # format version is always set
You can’t perform that action at this time.
0 commit comments