Skip to content

Commit

Permalink
Merge pull request #2155 from MGatner/gitignore-deploy
Browse files Browse the repository at this point in the history
Include .gitignore in starters
  • Loading branch information
jim-parry authored Aug 22, 2019
2 parents 97a5554 + 9d10dd8 commit 95effac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion admin/release-appstarter
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ git checkout $branch
echo -e "${BOLD}Build the framework distributable${NORMAL}"

echo -e "${BOLD}Copy the main files/folders...${NORMAL}"
releasable='app public writable README.md contributing.md env license.txt spark tests/_support'
releasable='app public writable README.md contributing.md env license.txt spark .gitignore'
for fff in $releasable ; do
if [ -d "$fff" ] ; then
rm -rf $fff
Expand Down
2 changes: 1 addition & 1 deletion admin/release-framework
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ git checkout $branch
echo -e "${BOLD}Build the framework distributable${NORMAL}"

echo -e "${BOLD}Copy the main files/folders...${NORMAL}"
releasable='app docs public system writable contributing.md env license.txt spark'
releasable='app docs public system writable contributing.md env license.txt spark .gitignore'
for fff in $releasable ; do
if [ -d "$fff" ] ; then
rm -rf $fff
Expand Down

0 comments on commit 95effac

Please sign in to comment.