mirror of
https://github.com/fosslinux/live-bootstrap.git
synced 2026-03-11 22:05:23 +01:00
Final reproducibility fixes
This commit is contained in:
parent
931490551a
commit
e7c39af4b9
4 changed files with 12 additions and 2 deletions
|
|
@ -40,7 +40,8 @@ reset_timestamp() {
|
|||
args="-h"
|
||||
fi
|
||||
if command -v find 2>&1 >/dev/null; then
|
||||
find . -exec touch ${args} -t 197001010000.00 "{}" \;
|
||||
# find does not error out on exec error
|
||||
find . -print0 | xargs -0 touch ${args} -t 197001010000.00
|
||||
else
|
||||
# A rudimentary find implementation that does the trick
|
||||
fs=
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue