From 5399f1fe8fcad61908c42f9c1ba5d4cddca31715 Mon Sep 17 00:00:00 2001 From: tschettervictor <85497460+tschettervictor@users.noreply.github.com> Date: Sat, 3 May 2025 18:22:54 -0600 Subject: [PATCH] bastille: Fix commands when --delay is specified --- usr/local/bin/bastille | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/usr/local/bin/bastille b/usr/local/bin/bastille index 1c460dab..99671e27 100755 --- a/usr/local/bin/bastille +++ b/usr/local/bin/bastille @@ -244,6 +244,10 @@ case "${CMD}" in OPTIONS="" while [ "$#" -gt 0 ] && [ "${PARALLEL_MODE}" -eq 1 ]; do case "${1}" in + -d|--delay) + OPTIONS="${OPTIONS} ${1} ${2}" + shift 2 + ;; -*) OPTIONS="${OPTIONS} ${1}" shift 1