Updated Branches: refs/heads/master d6240a9e6 -> 239332823
Work around CLI failing during createmobilespec.sh due to EMFILE on osx Project: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/commit/4a403bcc Tree: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/tree/4a403bcc Diff: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/diff/4a403bcc Branch: refs/heads/master Commit: 4a403bcc13ff5aa1b5bb95e63578fc9b06dfb63b Parents: d6240a9 Author: Andrew Grieve <[email protected]> Authored: Fri Aug 2 13:39:46 2013 -0400 Committer: Andrew Grieve <[email protected]> Committed: Fri Aug 2 13:39:46 2013 -0400 ---------------------------------------------------------------------- createmobilespec.sh | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/4a403bcc/createmobilespec.sh ---------------------------------------------------------------------- diff --git a/createmobilespec.sh b/createmobilespec.sh index 29a5ab0..dbcc92e 100755 --- a/createmobilespec.sh +++ b/createmobilespec.sh @@ -22,6 +22,9 @@ # It currently installs only the iOS and Android platforms. # Based on: https://wiki.apache.org/cordova/WorkingWithThree#preview +# TODO: Remove once CLI/plugman moves away from shelljs.exec(). +ulimit -S -n 4096 + if [[ ! -d cordova-mobile-spec ]]; then echo "Please run this script from the directory that contains cordova-mobile-spec" exit 1
