We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df3477f commit f2de061Copy full SHA for f2de061
2 files changed
scripts/circle/deploy.sh
@@ -9,8 +9,10 @@ ARG_DEFS=(
9
function run {
10
cd ../..
11
12
- # If --git-push-dryrun is set on this script, export it to all the scripts
+ # If --git-push-dryrun or --verbose is set on this script,
13
+ # export it to all the scripts
14
export GIT_PUSH_DRYRUN=$GIT_PUSH_DRYRUN
15
+ export VERBOSE=$VERBOSE
16
17
git config --global user.name 'Ionitron'
18
git config --global user.email hi@ionicframework.com
scripts/site/docs.sh
@@ -37,7 +37,7 @@ function run {
37
# git add -A
38
# git commit -am "docs: update for $VERSION"
39
# git push -q origin gh-pages
40
- ./deploy.sh
+ source deploy.sh
41
42
echo "-- Updated docs for $VERSION_NAME succesfully!"
43
fi
0 commit comments