Skip to content

Commit 2143075

Browse files
committed
fix(deploy): fix deploy script after restructuring
The location of certain files changed in fd37f67.
1 parent fd37f67 commit 2143075

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/scripts/deploy.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ ENCRYPTED_KEY_VAR="encrypted_${ENCRYPTION_LABEL}_key"
2929
ENCRYPTED_IV_VAR="encrypted_${ENCRYPTION_LABEL}_iv"
3030
ENCRYPTED_KEY=${!ENCRYPTED_KEY_VAR}
3131
ENCRYPTED_IV=${!ENCRYPTED_IV_VAR}
32-
openssl aes-256-cbc -K $ENCRYPTED_KEY -iv $ENCRYPTED_IV -in scripts/deploy_key.enc -out scripts/deploy_key -d
33-
chmod 600 scripts/deploy_key
32+
openssl aes-256-cbc -K $ENCRYPTED_KEY -iv $ENCRYPTED_IV -in src/scripts/deploy_key.enc -out src/scripts/deploy_key -d
33+
chmod 600 src/scripts/deploy_key
3434
eval `ssh-agent -s`
35-
ssh-add scripts/deploy_key
35+
ssh-add src/scripts/deploy_key
3636

3737
# Now that we're all set up, we can deploy
3838
npm run deploy

0 commit comments

Comments
 (0)