Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions bin/compile
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,6 @@ echo "-----> Fetched shallow history from $GIT_REPO_URL"
git submodule -q update --init --recursive
echo "-----> Checked out all submodules"
git submodule status | sed 's/^/ * /'

echo "-----> Removing .git directory"
rm -rf .git
1 change: 1 addition & 0 deletions bin/detect
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

app_dir="$1"

exit 0
if [ ! -f "$app_dir/.gitmodules" ]; then
exit 1
fi
Expand Down