diff options
Diffstat (limited to 'scripts/deployqtHelper_mac.sh')
-rwxr-xr-x | scripts/deployqtHelper_mac.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/deployqtHelper_mac.sh b/scripts/deployqtHelper_mac.sh index d8e729c787..f6168fac8e 100755 --- a/scripts/deployqtHelper_mac.sh +++ b/scripts/deployqtHelper_mac.sh @@ -24,12 +24,12 @@ if [ -d "$5" ]; then fi qmlpuppetapp="$1/Contents/MacOS/qmlpuppet" -if [ -d "$qmlpuppetapp" ]; then +if [ -f "$qmlpuppetapp" ]; then qmlpuppetArgument="-executable=$qmlpuppetapp" fi qml2puppetapp="$1/Contents/MacOS/qml2puppet" -if [ -d "$qml2puppetapp" ]; then +if [ -f "$qml2puppetapp" ]; then qml2puppetArgument="-executable=$qml2puppetapp" fi |