mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-07-28 01:31:57 +08:00
8 lines
317 B
Bash
8 lines
317 B
Bash
#!/bin/bash
|
|
# Script to only decrypt if it is available
|
|
|
|
if [ ! -z ${encrypted_daaf322d08bf_key+x} ]; then
|
|
openssl aes-256-cbc -K $encrypted_daaf322d08bf_key -iv $encrypted_daaf322d08bf_iv -in $TRAVIS_BUILD_DIR/package/deploy/slic3r-upload.rsa.enc -out ~/slic3r-upload.rsa -d
|
|
chmod 600 ~/slic3r-upload.rsa
|
|
fi
|