add debug fix to scripts

This commit is contained in:
Louis Abel 2024-05-01 15:26:37 -07:00
parent cfde33d6d1
commit 9b2380341d
Signed by: label
GPG Key ID: 2A6975660E424560
2 changed files with 3 additions and 2 deletions

View File

@ -92,7 +92,8 @@ function main() {
switch_repo_to_peridot "${PERIDOTID}"
fi
kiwi-ng "$DEBUG" --type="oem" --profile="Cloud-$CLOUD" --color-output system build --description="$SCRDIR" --target-dir "$OUTPUTDIR"
# shellcheck disable=SC2086
kiwi-ng $DEBUG --type="oem" --profile="Cloud-$CLOUD" --color-output system build --description="$SCRDIR" --target-dir "$OUTPUTDIR"
}
main

View File

@ -91,7 +91,7 @@ function main() {
switch_repo_to_peridot "${PERIDOTID}"
fi
kiwi-ng "$DEBUG" --type="iso" --profile="$LIVE-Live" --color-output system build --description="$SCRDIR" --target-dir "$OUTPUTDIR"
kiwi-ng $DEBUG --type="iso" --profile="$LIVE-Live" --color-output system build --description="$SCRDIR" --target-dir "$OUTPUTDIR"
}
main