From 7e20a7971962b5fb40718460c8d2f92b98ba02d8 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sun, 24 Jul 2022 23:09:57 +1000 Subject: [PATCH] AppImage: Glob fix --- scripts/make-appimage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make-appimage.sh b/scripts/make-appimage.sh index e60c9b100..24ba71b1c 100755 --- a/scripts/make-appimage.sh +++ b/scripts/make-appimage.sh @@ -196,7 +196,7 @@ echo "Copying binary and resources..." cp -a "$BUILDDIR/bin"/* "$OUTDIR/usr/bin" # We don't need tests -rm -f "$OUTDIR/usr/bin/*-tests" +rm -f "$OUTDIR"/usr/bin/*-tests # Patch RPATH so the binary goes hunting for shared libraries in the AppDir instead of system. echo "Patching RPATH in ${BINARY}..."