Skip to content

Commit

Permalink
🐛 FIX: add a new line when merging .gitignore files (Bug #9)
Browse files Browse the repository at this point in the history
  • Loading branch information
apolopena committed Jan 30, 2021
1 parent e96ad91 commit c6971dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bash/init-gitpod.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if [ ! -d "$GITPOD_REPO_ROOT/bootstrap" ]; then
else
echo "SUCCESS: moved Laravel project from ~/temp-app to $GITPOD_REPO_ROOT"
fi
cat ~/test-app/.gitignore >> $GITPOD_REPO_ROOT/.gitignore && rm ~/test-app/.gitignore
(cat ~/test-app/.gitignore; echo) >> $GITPOD_REPO_ROOT/.gitignore && rm ~/test-app/.gitignore
mv ~/test-app/README.md $GITPOD_REPO_ROOT/README_LARAVEL.md
rmdir ~/test-app
fi
Expand Down

0 comments on commit c6971dd

Please sign in to comment.