Skip to content

Commit e55c980

Browse files
committed
Merge branch 'develop-v3' of https://github.com/cocos2d/cocos2d-iphone into develop-v3
Former-commit-id: 05443e3
2 parents 2d4fc77 + 44bdf90 commit e55c980

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ if $INSTALL ; then
269269

270270
if [[ -d "$SCRIPT_DIR/.git" ]]; then
271271
# If this is a git repo, make sure that the Chipmunk submodule is checked out and current.
272-
git submodule update
272+
git submodule update 1>>"${ERROR_LOG}" 2>>"${ERROR_LOG}"
273273
check_status
274274
elif [[ ! -d "$SCRIPT_DIR/external/Chipmunk" ]]; then
275275
# Not a git repo, download Chipmunk files.
@@ -279,7 +279,7 @@ if $INSTALL ; then
279279
check_status
280280

281281
echo -n "."
282-
curl -L -# "https://github.com/slembcke/Chipmunk2D/archive/master.zip" -o "$DOWNLOAD_DIR/Chipmunk_tarball.zip" 1>/dev/null 2>>"${ERROR_LOG}"
282+
curl -L -# "https://github.com/slembcke/Chipmunk2D/archive/Cocos2D-3.0.zip" -o "$DOWNLOAD_DIR/Chipmunk_tarball.zip" 1>/dev/null 2>>"${ERROR_LOG}"
283283
check_status
284284
echo -n "."
285285
if [[ ! -d "${DOWNLOAD_DIR}/Chipmunk/" ]]; then

installer/build_installer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ fi
2222

2323
# Tar / Gzip Cocos2D Repositry
2424
echo "${BOLD}>>> Creating Cocos2D Archive. ${COLOREND}"
25-
tar -C ../. --exclude='.git' --exclude='installer' -zcf install.tar.gz .
25+
tar -C ../. --exclude='.git' --exclude='installer' --exclude='build' --exclude='DerivedData' --exclude='api-docs' -zcf install.tar.gz .
2626

2727
# Create Installer
2828
echo "${BOLD}>>> Building $INSTALL_TARGET_APP Installer Application. ${COLOREND}"

0 commit comments

Comments
 (0)