Skip to content

Commit

Permalink
action: prevent AppImage generator from failing a job (#3096)
Browse files Browse the repository at this point in the history
* action: prevent AppImage generator from failing a job

* corrected
  • Loading branch information
avently committed Sep 21, 2023
1 parent b9407c0 commit 9ac13a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/desktop/make-appimage-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ release_app_dir=$root_dir/apps/multiplatform/release/main/app

cd $multiplatform_dir
libcrypto_path=$(ldd common/src/commonMain/cpp/desktop/libs/*/deps/libHSdirect-sqlcipher-*.so | grep libcrypto | cut -d'=' -f 2 | cut -d ' ' -f 2)
trap "rm common/src/commonMain/cpp/desktop/libs/*/deps/`basename $libcrypto_path` 2> /dev/null" EXIT
trap "rm common/src/commonMain/cpp/desktop/libs/*/deps/`basename $libcrypto_path` 2> /dev/null || true" EXIT
cp $libcrypto_path common/src/commonMain/cpp/desktop/libs/*/deps

./gradlew createDistributable
Expand Down

0 comments on commit 9ac13a3

Please sign in to comment.