Skip to content

Commit 80a1594

Browse files
committed
Merge pull request #17 from dbolotin/patch-1
Fixes wrong behaviour with paths with spaces.
2 parents d4d8656 + 2ae15ea commit 80a1594

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

migec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ do
8686
shift
8787
;;
8888
*)
89-
migecArgs+=(${key})
89+
migecArgs+=("${key}")
9090
;;
9191
esac
9292
done
@@ -141,4 +141,4 @@ then
141141
exit 1
142142
fi
143143

144-
$java -XX:+AggressiveOpts "${javaArgs[@]}" -jar $jar "${migecArgs[@]}"
144+
$java -XX:+AggressiveOpts "${javaArgs[@]}" -jar $jar "${migecArgs[@]}"

0 commit comments

Comments
 (0)