chore: fix travis deploy script (#768)

This commit is contained in:
Nolan Lawson 2018-12-08 18:07:50 -08:00 committed by GitHub
parent 8eb30d02e9
commit 481a567807
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@ set -x
PATH="$PATH:./node_modules/.bin"
# set up robots.txt
if [[ "$DEPLOY_TYPE" == "prod" ]]; then
if [[ "$DEPLOY_TYPE" == "dev" ]]; then
printf 'User-agent: *\nDisallow: /' > assets/robots.txt
else
rm -f assets/robots.txt
@ -18,8 +18,8 @@ if [[ ! -z "$NOW_TOKEN" ]]; then
NOW_COMMAND="$NOW_COMMAND --token $NOW_TOKEN"
fi
#launch
$NOW_COMMAND -e SAPPER_TIMESTAMP=$(date +%s%3N)
# launch
URL=$($NOW_COMMAND -e SAPPER_TIMESTAMP=$(date +%s%3N))
# fixes issues with now being unavailable immediately
sleep 60
@ -32,7 +32,7 @@ if [[ "$DEPLOY_TYPE" == "prod" ]]; then
fi
# alias
$NOW_COMMAND alias "$NOW_ALIAS"
$NOW_COMMAND alias "$NOW_ALIAS" "$URL"
# cleanup
$NOW_COMMAND rm pinafore --safe --yes