Skip to content

Commit 4d2d08b

Browse files
committed
Fix install.sh download condition.
Former-commit-id: a2f918b
1 parent 5cbe07d commit 4d2d08b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ if $INSTALL ; then
271271
# If this is a git repo, make sure that the Chipmunk submodule is checked out and current.
272272
git submodule update --init 1>>"${ERROR_LOG}" 2>>"${ERROR_LOG}"
273273
check_status
274-
elif [[ ! -d "$SCRIPT_DIR/external/Chipmunk" ]]; then
274+
elif [[ ! -d "$SCRIPT_DIR/external/Chipmunk/src" ]]; then
275275
# Not a git repo, download Chipmunk files.
276276
echo -n "...downloading Chipmunk files, please wait"
277277
DOWNLOAD_DIR="$SCRIPT_DIR/external"

0 commit comments

Comments
 (0)