Skip to content

Commit cf3628c

Browse files
committed
Fix deployment
1 parent 3240b09 commit cf3628c

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,4 @@ local.properties
4242
/*.crc
4343
/*.txt
4444
/*.csv
45+
out/

deploy.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
set -e # exit with nonzero exit code if anything fails
44

5-
# clear and re-create the out directory
6-
rm -rf out || exit 0
7-
mkdir out
5+
# clear and re-create the directory
6+
rm -rf deployed || exit 0
7+
mkdir deployed
88

99
# run our compile script, discussed above
10-
cp -r test_data/substitution_parameters out/
10+
cp -r test_data/substitution_parameters deployed/
1111

12-
# go to the out directory and create a *new* Git repo
13-
cd out
12+
# go to the directory and create a *new* Git repo
13+
cd deployed
1414
git init
1515

1616
# inside this git repo we'll pretend to be a new user

0 commit comments

Comments
 (0)