diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-05-20 22:30:22 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-05-20 22:30:22 +0200 |
commit | f1f17e7868eb8353c3031bdc0d72f2082a904fcd (patch) | |
tree | fdc4fe365cbdd46708b851fae27d3119388f2568 | |
parent | 6fdf68fab5442e4f219ec3baa908628d38929845 (diff) | |
download | jenkins.debian.net-f1f17e7868eb8353c3031bdc0d72f2082a904fcd.tar.xz |
reproducible: chown to make it world readable
-rwxr-xr-x | bin/reproducible_build.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/reproducible_build.sh b/bin/reproducible_build.sh index 9c1a69ea..035c9595 100755 --- a/bin/reproducible_build.sh +++ b/bin/reproducible_build.sh @@ -152,6 +152,7 @@ handle_404() { handle_not_for_us() { # a list of valid architecture for this package should be passed to this function echo "Package ${SRCPACKAGE} (${VERSION}) shall only be build on \"$(echo "$@" | xargs echo )\" and thus was skipped." | tee -a ${RBUILDLOG} + chmod 644 $RBUILDLOG mv $RBUILDLOG $BASE/rbuild/${SUITE}/${ARCH}/${SRCPACKAGE}_${EVERSION}.rbuild.log RBUILDLOG=$BASE/rbuild/${SUITE}/${ARCH}/${SRCPACKAGE}_${EVERSION}.rbuild.log DURATION='' |