From 245238feb9025c04d572affb160c21f695c7ba5e Mon Sep 17 00:00:00 2001
From: Diego Pasqualin <dpasqualin@c3sl.ufpr.br>
Date: Sun, 17 Feb 2013 12:52:48 -0300
Subject: [PATCH] Fix problem parsing output path with white spaces

---
 create-iso.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/create-iso.sh b/create-iso.sh
index 2fdbe12..4df4cfe 100755
--- a/create-iso.sh
+++ b/create-iso.sh
@@ -185,7 +185,7 @@ nextHost=false
 nextMirror=false
 output=false
 
-for opc in $*; do
+for opc in "$@"; do
     case "$opc" in
         --dist)
             dist=true
-- 
GitLab