appimage build: better caching, both locally and on CI

This commit is contained in:
SomberNight
2022-11-04 05:20:25 +00:00
parent 3b03bc9b29
commit 6f311c8930
4 changed files with 34 additions and 11 deletions
+1 -1
View File
@@ -66,6 +66,6 @@ info "Building $pkgname..."
cp -fpv "$here/$pkgname/dist/lib/$dlname" "$PROJECT_ROOT/electrum" || fail "Could not copy the $pkgname binary to its destination"
info "$dlname has been placed in the inner 'electrum' folder."
if [ -n "$DLL_TARGET_DIR" ] ; then
cp -fpv "$here/$pkgname/dist/lib/$dlname" "$DLL_TARGET_DIR" || fail "Could not copy the $pkgname binary to DLL_TARGET_DIR"
cp -fpv "$here/$pkgname/dist/lib/$dlname" "$DLL_TARGET_DIR/" || fail "Could not copy the $pkgname binary to DLL_TARGET_DIR"
fi
)