mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-17 20:13:30 +01:00
Fix paths
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -11,6 +11,8 @@ test/auth.json
|
|||||||
test/auth.js
|
test/auth.js
|
||||||
docs/deploy/deploy_key
|
docs/deploy/deploy_key
|
||||||
docs/deploy/deploy_key.pub
|
docs/deploy/deploy_key.pub
|
||||||
|
deploy/deploy_key
|
||||||
|
deploy/deploy_key.pub
|
||||||
|
|
||||||
# Miscellaneous
|
# Miscellaneous
|
||||||
.tmp/
|
.tmp/
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ ENCRYPTED_KEY_VAR="encrypted_${ENCRYPTION_LABEL}_key"
|
|||||||
ENCRYPTED_IV_VAR="encrypted_${ENCRYPTION_LABEL}_iv"
|
ENCRYPTED_IV_VAR="encrypted_${ENCRYPTION_LABEL}_iv"
|
||||||
ENCRYPTED_KEY=${!ENCRYPTED_KEY_VAR}
|
ENCRYPTED_KEY=${!ENCRYPTED_KEY_VAR}
|
||||||
ENCRYPTED_IV=${!ENCRYPTED_IV_VAR}
|
ENCRYPTED_IV=${!ENCRYPTED_IV_VAR}
|
||||||
openssl aes-256-cbc -K $ENCRYPTED_KEY -iv $ENCRYPTED_IV -in docs/deploy/deploy_key.enc -out deploy_key -d
|
openssl aes-256-cbc -K $ENCRYPTED_KEY -iv $ENCRYPTED_IV -in deploy/deploy_key.enc -out deploy_key -d
|
||||||
chmod 600 deploy_key
|
chmod 600 deploy_key
|
||||||
eval `ssh-agent -s`
|
eval `ssh-agent -s`
|
||||||
ssh-add deploy_key
|
ssh-add deploy_key
|
||||||
|
|||||||
Reference in New Issue
Block a user