summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_maintenance.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/reproducible_maintenance.sh')
-rwxr-xr-xbin/reproducible_maintenance.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/reproducible_maintenance.sh b/bin/reproducible_maintenance.sh
index acf00556..d7350e08 100755
--- a/bin/reproducible_maintenance.sh
+++ b/bin/reproducible_maintenance.sh
@@ -99,17 +99,17 @@ for s in $SUITES ; do
done
set -e
-# for Archlinux
+# for Arch Linux
set +e
if [ "$HOSTNAME" = "${ARCHLINUX_BUILD_NODE}" ] ; then
- echo "$(date -u) - updating Archlinux schroot now."
+ echo "$(date -u) - updating Arch Linux schroot now."
schroot --directory /tmp -c source:jenkins-reproducible-archlinux -u root -- pacman -Syu --noconfirm
RESULT=$?
if [ $RESULT -eq 1 ] ; then
- echo "Warning: failed to update Archlinux schroot."
+ echo "Warning: failed to update Arch Linux schroot."
DIRTY=true
else
- echo "$(date -u) - updating Archlinux schroot done."
+ echo "$(date -u) - updating Arch Linux schroot done."
fi
fi
set -e