File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
data/scripts/Linux-AppImage Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 44# #
55# # @param $1 (optional) zsync URL - location used for AppImage updater
66# # @env $appimage_key (optional) signing key
7+ # # (new method, see https://github.com/probonopd/go-appimage/issues/318)
8+ # # base64-encoded .tar.gz of pubkey.asc+privkey.asc.enc
9+ # # openssl-encrypted private key with:
10+ # # `openssl aes-256-cbc -pass pass:dummy -in privkey.asc -out privkey.asc.enc -a -md sha256`
711# # @returns name of created AppImage
812
913APPDIR=UltraGrid.AppDir
158162
159163GIT_ROOT=$( git rev-parse --show-toplevel || true)
160164if [ -n " ${appimage_key-} " ] && [ -n " ${GIT_ROOT-} " ]; then
161- echo " $appimage_key " >> " $GIT_ROOT /pubkey.asc"
165+ echo " $appimage_key " | base64 -d | tar -C " $GIT_ROOT " -xzaf -
166+ export super_secret_password=dummy
162167fi
163168
164169mkappimage=$( command -v ./mkappimage || command -v mkappimage-x86_64.AppImage || command -v mkappimage || true)
You can’t perform that action at this time.
0 commit comments