Use double quotes to expand wildcards

This commit is contained in:
Sander van der Burg 2013-05-29 14:50:24 +02:00
parent cf512cf5c2
commit a7895de1fc

View File

@ -8,7 +8,7 @@ stdenv.mkDerivation {
cat > $out/bin/run-test-simulator << "EOF"
#! ${stdenv.shell} -e
cd '${app}/${baseDir}/*.app'
cd "${app}/${baseDir}/*.app"
"$(readlink "${xcodewrapper}/bin/iPhone Simulator")" -SimulateApplication './${name}' -SimulateDevice '${device}'
EOF
chmod +x $out/bin/run-test-simulator