chore(scripts): update path to circle scripts

This commit is contained in:
Ionitron
2017-07-05 11:52:30 -04:00
parent 576f83df40
commit 0e67d18bb6
2 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ jobs:
key: ionic-site key: ionic-site
- run: - run:
name: Prepare ionic-site repo name: Prepare ionic-site repo
command: ./scripts/docs/prepare.sh command: ./packages/ionic-angular/scripts/docs/prepare.sh
- save_cache: - save_cache:
key: ionic-site key: ionic-site
paths: paths:
@ -38,7 +38,7 @@ jobs:
name: Update docs name: Update docs
command: | command: |
if [ "${CIRCLE_BRANCH}" == "master" ]; then if [ "${CIRCLE_BRANCH}" == "master" ]; then
./scripts/ci/deploy.sh ./packages/ionic-angular/scripts/ci/deploy.sh
else else
echo "We are on ${CIRCLE_BRANCH} branch, not going to update docs." echo "We are on ${CIRCLE_BRANCH} branch, not going to update docs."
fi fi

View File

@ -40,7 +40,7 @@ function run {
fi fi
# Update docs # Update docs
./scripts/docs/deploy.sh --version-name="$VERSION_NAME" ./packages/ionic-angular/scripts/docs/deploy.sh --version-name="$VERSION_NAME"
} }