We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3240b09 commit cf3628cCopy full SHA for cf3628c
.gitignore
@@ -42,3 +42,4 @@ local.properties
42
/*.crc
43
/*.txt
44
/*.csv
45
+out/
deploy.sh
@@ -2,15 +2,15 @@
2
3
set -e # exit with nonzero exit code if anything fails
4
5
-# clear and re-create the out directory
6
-rm -rf out || exit 0
7
-mkdir out
+# clear and re-create the directory
+rm -rf deployed || exit 0
+mkdir deployed
8
9
# run our compile script, discussed above
10
-cp -r test_data/substitution_parameters out/
+cp -r test_data/substitution_parameters deployed/
11
12
-# go to the out directory and create a *new* Git repo
13
-cd out
+# go to the directory and create a *new* Git repo
+cd deployed
14
git init
15
16
# inside this git repo we'll pretend to be a new user
0 commit comments