You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by an...@apache.org on 2012/11/22 01:44:22 UTC

[2/2] ios commit: adding release command for iOS

adding release command for iOS


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

Branch: refs/heads/master
Commit: cb5f1c8290bca28f8687012cb3dbe339b19ac252
Parents: acc8b34
Author: Anis Kadri <an...@gmail.com>
Authored: Wed Nov 21 16:44:03 2012 -0800
Committer: Anis Kadri <an...@gmail.com>
Committed: Wed Nov 21 16:44:03 2012 -0800

----------------------------------------------------------------------
 bin/templates/project/cordova/release |   45 ++++++++++++++++++++++++++++
 1 files changed, 45 insertions(+), 0 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-ios/blob/cb5f1c82/bin/templates/project/cordova/release
----------------------------------------------------------------------
diff --git a/bin/templates/project/cordova/release b/bin/templates/project/cordova/release
new file mode 100755
index 0000000..73212b6
--- /dev/null
+++ b/bin/templates/project/cordova/release
@@ -0,0 +1,45 @@
+#!/bin/bash
+
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+# 
+# http://www.apache.org/licenses/LICENSE-2.0
+# 
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+#  KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+
+#
+# compile and launch a Cordova/iOS project to the simulator
+#
+
+set -e
+
+CORDOVA_PATH=$( cd "$( dirname "$0" )" && pwd )
+PROJECT_PATH=$CORDOVA_PATH/..
+
+for file in $PROJECT_PATH/*.xcodeproj; do
+  PROJECT_NAME=$(basename "$file" .xcodeproj)
+done;
+
+cd "$PROJECT_PATH"
+
+APP=build/$PROJECT_NAME.app
+SDK=`xcodebuild -showsdks | grep Sim | tail -1 | awk '{print $6}'`
+
+xcodebuild -project $PROJECT_NAME.xcodeproj -arch i386 -target $PROJECT_NAME -configuration Release -sdk $SDK clean build VALID_ARCHS="i386" CONFIGURATION_BUILD_DIR="$PROJECT_PATH/build"
+
+
+
+
+