Update encrypted credentials (#682)

The old npm credentials got leaked in sass/migrator#44 as a result of
dart-lang/pub#2132.
This commit is contained in:
Natalie Weizenbaum 2019-05-15 18:02:32 -07:00 committed by GitHub
parent 4b7699291c
commit 1027737d9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -5,8 +5,8 @@
# Decrypts the encrypted credentials using Travis's private key and saves them
# to credentials.tar.
function decrypt_credentials() {
openssl aes-256-cbc -K $encrypted_867f88017e77_key \
-iv $encrypted_867f88017e77_iv \
openssl aes-256-cbc -K $encrypted_b4541d8c554c_key \
-iv $encrypted_b4541d8c554c_iv \
-in tool/travis/credentials.tar.enc \
-out credentials.tar -d
}