mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
Closes: https://bugs.gentoo.org/923350 Closes: https://bugs.gentoo.org/911578 Closes: https://bugs.gentoo.org/908889 Signed-off-by: Paul Zander <negril.nx+gentoo@gmail.com> Closes: https://github.com/gentoo/gentoo/pull/35374 Signed-off-by: Sam James <sam@gentoo.org>
20 lines
539 B
Diff
20 lines
539 B
Diff
From: Paul Zander <negril.nx+gentoo@gmail.com>
|
|
|
|
Fix test harness script
|
|
|
|
diff --git a/adm/templates/draw.sh b/adm/templates/draw.sh
|
|
index 02e6043..c7347e0 100755
|
|
--- a/adm/templates/draw.sh
|
|
+++ b/adm/templates/draw.sh
|
|
@@ -4,7 +4,8 @@ aCurrentPath="$PWD"
|
|
aScriptPath=${BASH_SOURCE%/*}; if [ -d "${aScriptPath}" ]; then cd "$aScriptPath"; fi; aScriptPath="$PWD";
|
|
|
|
source "${aScriptPath}/env.sh" "$1"
|
|
+shift
|
|
|
|
echo 'Hint: use "pload ALL" command to load standard commands'
|
|
-cd ${aCurrentPath}
|
|
-DRAWEXE
|
|
+cd "${aCurrentPath}"
|
|
+DRAWEXE "$@"
|