Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/bin/build-packages
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2023-06-15 09:47:27 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2023-06-15 09:47:27 +0200
commit0aa5e1ee353f1f82cd37daf77696198666b0ed3b (patch)
treea56861df315542401c0770de9288d810ca0b8f10 /bin/build-packages
parentd18cf2a820d33320c020f6f2d04b410ba6b38bd7 (diff)
fixed endless looping in build-packages
Diffstat (limited to 'bin/build-packages')
-rwxr-xr-xbin/build-packages2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/build-packages b/bin/build-packages
index aa2ac05..3bbfcad 100755
--- a/bin/build-packages
+++ b/bin/build-packages
@@ -1139,7 +1139,7 @@ fi
>&2 echo 'Done.'
# simple endless loop
-if [ ${endless} ]; then
+if [ ${endless} = true ]; then
sleep 10
exec "$0" "$@"
fi