mirror of
https://github.com/CyberMind-FR/secubox-deb.git
synced 2026-07-29 13:59:40 +00:00
fix(image): build-live-usb.sh accept --kiosk (was only --no-kiosk)
The workflow passes --kiosk (consistent with build-rpi-usb.sh); build-live-usb.sh only had --no-kiosk and erred 'Unknown argument: --kiosk', failing the x64 USB build. Add a --kiosk case (INCLUDE_KIOSK=1).
This commit is contained in:
parent
b945c831a0
commit
854805fbbd
|
|
@ -104,6 +104,7 @@ while [[ $# -gt 0 ]]; do
|
|||
--out) OUT_DIR="$2"; shift 2 ;;
|
||||
--size) IMG_SIZE="$2"; shift 2 ;;
|
||||
--local-cache) USE_LOCAL_CACHE=1; shift ;;
|
||||
--kiosk) INCLUDE_KIOSK=1; shift ;;
|
||||
--no-kiosk) INCLUDE_KIOSK=0; shift ;;
|
||||
--no-persistence) INCLUDE_PERSISTENCE=0; shift ;;
|
||||
--no-compress) NO_COMPRESS=1; shift ;;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user