You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2012/06/06 10:49:41 UTC

[2/2] git commit: fixed issue with ios

fixed issue with ios


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

Branch: refs/heads/master
Commit: 851e497f4603800cd232d3f63e3c1590674f14dd
Parents: b62cf50
Author: steven gill <st...@apache.org>
Authored: Tue Jun 5 16:59:02 2012 -0700
Committer: steven gill <st...@apache.org>
Committed: Tue Jun 5 16:59:02 2012 -0700

----------------------------------------------------------------------
 coho |   20 +-------------------
 1 files changed, 1 insertions(+), 19 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-coho/blob/851e497f/coho
----------------------------------------------------------------------
diff --git a/coho b/coho
index d4d709a..bdd9f79 100755
--- a/coho
+++ b/coho
@@ -1,22 +1,3 @@
-/*
- 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.
-*/
-
 #!/usr/bin/env node
 PLATFORM = process.argv[2]
 if (!PLATFORM) {
@@ -117,6 +98,7 @@ if (PLATFORM === "all" || PLATFORM === "ios") {
     queueCommand("echo 'Building iOS'");
     queueCommand("cd " + tempRepoDir + " && git clone "+ios+" && cd "+iosdir+" && git fetch --tags && git checkout "+VERSION);
     queueCommand("cd " + tempRepoDir + " && cp -r " + iosdir + " " + releaseSrcDir);
+	queueCommand("cd " + tempRepoDir + "/"+iosdir+" && make install-wkhtmltopdf");
     queueCommand("cd " + tempRepoDir + "/"+iosdir+" && make");
     queueCommand("cd " + tempRepoDir + "/"+iosdir+"/dist && cp -r Cordova-"+VERSION+".dmg " + iosReleaseBinDir + " && cp -r Cordova-"+VERSION+".dmg.SHA1 " + iosReleaseBinDir);
     queueCommand("cd " + tempRepoDir + "/"+iosdir+" && cp NOTICE ../../release/bin/ios");