diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-07-09 20:15:33 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-07-09 20:15:33 +0200 |
commit | 1b749c169ccff9205044c6046d6750c955776374 (patch) | |
tree | 399925844e1c9b6e956b758a58f11b810e8bb152 /bin | |
parent | 0a50eee46dc82a1992e74aa89c25715f65a4be55 (diff) | |
download | jenkins.debian.net-1b749c169ccff9205044c6046d6750c955776374.tar.xz |
reproducible netbsd: use -U to avoid using sudo
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_netbsd.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_netbsd.sh b/bin/reproducible_netbsd.sh index c37353f9..cde63c11 100755 --- a/bin/reproducible_netbsd.sh +++ b/bin/reproducible_netbsd.sh @@ -72,7 +72,7 @@ for MACHINE in $MACHINES ; do # save results in b1 save_netbsd_results b1 ${MACHINE} # cleanup and explicitly delete old tooldir to force re-creation for the next $MACHINE type - ./build.sh -m ${MACHINE} cleandir + ./build.sh -U -m ${MACHINE} cleandir rm obj/tooldir.* -rf echo "${MACHINE} done, first time." done @@ -102,7 +102,7 @@ for MACHINE in $MACHINES ; do # save results in b2 save_netbsd_results b2 ${MACHINE} # cleanup and explicitly delete old tooldir to force re-creation for the next $MACHINE type - ./build.sh -m ${MACHINE} cleandir + ./build.sh -U -m ${MACHINE} cleandir rm obj/tooldir.* -r echo "${MACHINE} done, second time." done |