Adalbert Wysocki created CB-2175:
------------------------------------
Summary: build scripts fail when project path contains spaces
Key: CB-2175
URL: https://issues.apache.org/jira/browse/CB-2175
Project: Apache Cordova
Issue Type: Bug
Components: CLI
Affects Versions: 2.2.0
Environment: Mac os
Reporter: Adalbert Wysocki
Assignee: Filip Maj
When the project is located in a path with spaces, the clean/debug... cordova
build scripts are failing.
Fix: double quote paths:
clean (L24):
bash $CORDOVA_PATH/cordova clean
=>
bash "$CORDOVA_PATH/cordova" clean
cordova (L102)
(cd $PROJECT_PATH && $1)
=>
(cd "$PROJECT_PATH" && $1)
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira