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-16 07:01:57 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2023-06-16 07:01:57 +0200
commit638949747af95ad97a4144465f3ab5266e7e1b86 (patch)
tree979858d26e3a3f8f717558cd5fb7cf82538ea8a5 /bin/build-packages
parent1ae328d0e9cb1737dba182803f72931801feb84a (diff)
removed -e in build-packages (-n 0 does the trick already)
Diffstat (limited to 'bin/build-packages')
-rwxr-xr-xbin/build-packages14
1 files changed, 1 insertions, 13 deletions
diff --git a/bin/build-packages b/bin/build-packages
index f32a8a7..7a5a541 100755
--- a/bin/build-packages
+++ b/bin/build-packages
@@ -62,8 +62,6 @@ usage() {
>&2 echo ' Cannot be combined with -l.'
>&2 echo ' -x: If package build fails, do not request new assignment(s).'
>&2 echo ' Cannot be combined with -l.'
- >&2 echo ' -e: Run in an endless loop (careful, not all processes might get killed'
- >&2 echo ' after every finished run!).'
>&2 echo ''
>&2 echo 'known straws (separated by and enclosed in ":", sets of straws separated by " "):'
>&2 echo ' :clean_chroot:'
@@ -86,7 +84,7 @@ usage() {
}
eval set -- "$(
- getopt -o hl:n:p:s:t:uxe \
+ getopt -o hl:n:p:s:t:ux \
--long help \
--long local: \
--long prefer: \
@@ -101,7 +99,6 @@ unset forced_package
unset forced_straws
unset prefered_package
exit_after_failure=false
-endless=false
timeout=0
while true
@@ -143,9 +140,6 @@ do
-x)
exit_after_failure=true
;;
- -e)
- endless=true
- ;;
--)
shift
break
@@ -1137,9 +1131,3 @@ if ! ${i_am_the_master}; then
fi
>&2 echo 'Done.'
-
-# simple endless loop
-if [ ${endless} = true ]; then
- sleep 10
- exec "$0" $*
-fi