aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Farina (Zero_Chaos) <zerochaos@gentoo.org>2015-09-23 14:45:34 -0400
committerRick Farina (Zero_Chaos) <zerochaos@gentoo.org>2015-09-23 14:45:34 -0400
commitca8695e0239981fa7f31e0f3eef2fadf8778ddb4 (patch)
tree1c389ddf4d91d43e1d228ab1a460b2fa54150173
parentMerge branch 'master' of git+ssh://git.gentoo.org/proj/catalyst (diff)
downloadcatalyst-ca8695e0239981fa7f31e0f3eef2fadf8778ddb4.tar.gz
catalyst-ca8695e0239981fa7f31e0f3eef2fadf8778ddb4.tar.bz2
catalyst-ca8695e0239981fa7f31e0f3eef2fadf8778ddb4.zip
revert one bad line from the quoting patch. this still isn't right, but it restores the old and functional behavior as long as there is no space in the path
-rwxr-xr-xtargets/support/create-iso.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/targets/support/create-iso.sh b/targets/support/create-iso.sh
index 9714378e..b4077c3d 100755
--- a/targets/support/create-iso.sh
+++ b/targets/support/create-iso.sh
@@ -269,7 +269,7 @@ case ${clst_hostarch} in
then
if [ -d "${clst_target_path}/boot" ]
then
- if [ -n "$(ls \"${clst_target_path}/boot\")" ]
+ if [ -n "$(ls ${clst_target_path}/boot)" ]
then
mv "${clst_target_path}"/boot/* "${clst_target_path}/isolinux"
rm -r "${clst_target_path}/boot"