Updated Branches:
  refs/heads/master 9a26b94b9 -> cdb5ad136

[CB-3024] help string updated with parameter usage


Project: http://git-wip-us.apache.org/repos/asf/cordova-blackberry/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/cordova-blackberry/commit/cdb5ad13
Tree: http://git-wip-us.apache.org/repos/asf/cordova-blackberry/tree/cdb5ad13
Diff: http://git-wip-us.apache.org/repos/asf/cordova-blackberry/diff/cdb5ad13

Branch: refs/heads/master
Commit: cdb5ad136e3b1c9fa567baa91da5e39127856c2a
Parents: 9a26b94
Author: lorinbeer <[email protected]>
Authored: Fri Apr 12 08:49:05 2013 -0700
Committer: lorinbeer <[email protected]>
Committed: Fri Apr 12 08:49:05 2013 -0700

----------------------------------------------------------------------
 bin/create |   10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-blackberry/blob/cdb5ad13/bin/create
----------------------------------------------------------------------
diff --git a/bin/create b/bin/create
index b7e719b..54903b8 100755
--- a/bin/create
+++ b/bin/create
@@ -25,11 +25,15 @@ set -e
 
 if [ -n "$1" ] && [ "$1" == "-h" ]
 then
-    echo 'usage: create path package appname'
-    echo 'After you have created your application, make sure to customize the 
project.properties file inside your app directory with your environment 
specifics!'
-    exit 0
+  echo "Usage: $0 <path_to_new_project> <package_name> <project_name>"
+  echo "    <path_to_new_project>: Path to your new Cordova iOS project"
+  echo "    <package_name>: Package name, following reverse-domain style 
convention (ignored on BlackBerry platforms)"
+  echo "    <project_name>: Project name"
+  echo 'After you have created your application, make sure to customize the 
project.properties file inside your app directory with your environment 
specifics!'
+  exit 0;
 fi
 
+
 BUILD_PATH="$( cd "$( dirname "$0" )/.." && pwd )"
 VERSION=$(cat "$BUILD_PATH/VERSION")
 

Reply via email to