commit: 0c97754c1b7fbc96a63a313d72e3e58dff8276a2
Author: Nowa Ammerlaan <nowa <AT> gentoo <DOT> org>
AuthorDate: Mon May 5 15:44:22 2025 +0000
Commit: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
CommitDate: Fri Oct 3 14:22:19 2025 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=0c97754c
targets/*/controller.sh: pass on all extra arguments to create-iso.sh
Signed-off-by: Andreas K. Hüttel <dilfridge <AT> gentoo.org>
Signed-off-by: Nowa Ammerlaan <nowa <AT> gentoo.org>
targets/embedded/controller.sh | 2 +-
targets/livecd-stage2/controller.sh | 2 +-
targets/stage4/controller.sh | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/targets/embedded/controller.sh b/targets/embedded/controller.sh
index 58591f98..7570ed08 100755
--- a/targets/embedded/controller.sh
+++ b/targets/embedded/controller.sh
@@ -60,7 +60,7 @@ case ${1} in
iso)
shift
- ${clst_shdir}/support/create-iso.sh ${1}
+ ${clst_shdir}/support/create-iso.sh ${@}
;;
clean)
diff --git a/targets/livecd-stage2/controller.sh
b/targets/livecd-stage2/controller.sh
index fb2227fd..f92b7921 100755
--- a/targets/livecd-stage2/controller.sh
+++ b/targets/livecd-stage2/controller.sh
@@ -164,7 +164,7 @@ case $1 in
iso)
shift
- ${clst_shdir}/support/create-iso.sh $1
+ ${clst_shdir}/support/create-iso.sh ${@}
;;
esac
exit $?
diff --git a/targets/stage4/controller.sh b/targets/stage4/controller.sh
index 9c1866e4..07e74d3d 100755
--- a/targets/stage4/controller.sh
+++ b/targets/stage4/controller.sh
@@ -61,7 +61,7 @@ case $1 in
iso)
shift
- ${clst_shdir}/support/create-iso.sh $1
+ ${clst_shdir}/support/create-iso.sh ${@}
;;
clean)