diff options
Diffstat (limited to 'ci/snap/deploy.sh')
-rwxr-xr-x | ci/snap/deploy.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/snap/deploy.sh b/ci/snap/deploy.sh index 3f959c05e5..5fbd52d775 100755 --- a/ci/snap/deploy.sh +++ b/ci/snap/deploy.sh @@ -7,7 +7,8 @@ set -o pipefail # [[ "$TRAVIS_TAG" != "$TRAVIS_BRANCH" ]] && exit 0 mkdir -p .snapcraft -openssl aes-256-cbc -K $encrypted_ece1c4844832_key -iv $encrypted_ece1c4844832_iv +# shellcheck disable=SC2154 +openssl aes-256-cbc -K "$encrypted_ece1c4844832_key" -iv "$encrypted_ece1c4844832_iv" \ -in ci/snap/travis_snapcraft.cfg -out .snapcraft/snapcraft.cfg -d SNAP=$(find ./ -name "*.snap") @@ -18,4 +19,3 @@ if [[ "$SNAP" =~ "dirty" || "$SNAP" =~ "nightly" ]]; then else snapcraft push "$SNAP" --release candidate fi - |