From e503e8fb08da4a10b4c3128dddc8f545e96f55be Mon Sep 17 00:00:00 2001 From: andyh2 Date: Mon, 16 Sep 2019 19:50:43 -0400 Subject: [PATCH] remove old deploy scripts --- scripts/deploy.sh | 17 ----------------- scripts/travis-deploy.sh | 16 ---------------- 2 files changed, 33 deletions(-) delete mode 100755 scripts/deploy.sh delete mode 100755 scripts/travis-deploy.sh diff --git a/scripts/deploy.sh b/scripts/deploy.sh deleted file mode 100755 index be290fe..0000000 --- a/scripts/deploy.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash -set -e -set -x - -CONTAINER=${CONTAINER:-cabana-staging} - -pushd build/ -find . -not -name "*.map" -type f | while read f; do - az storage blob upload --account-name chffrdist --file "$f" --container-name $CONTAINER --name "$f" -done -popd - -pushd public -find img -type f | while read f; do - az storage blob upload --account-name chffrdist --file "$f" --container-name $CONTAINER --name "$f" -done -popd diff --git a/scripts/travis-deploy.sh b/scripts/travis-deploy.sh deleted file mode 100755 index 4f363e3..0000000 --- a/scripts/travis-deploy.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash -set -e - -cd $TRAVIS_BUILD_DIR - -pushd build/ -find . -not -name "*.map" -type f | while read f; do - az storage blob upload --file "$f" --container-name cabana --name "$f" -done -popd - -pushd public -find img -type f | while read f; do - az storage blob upload --file "$f" --container-name cabana --name "$f" -done -popd