From 083e25d289ece68beb94130c45372c7578f03b7e Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Mon, 29 Aug 2022 23:41:30 +0200 Subject: [PATCH] fix(linux): use find/mv instead of rename [skip ci] --- prepare_artifacts.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prepare_artifacts.sh b/prepare_artifacts.sh index eb6775e..608bd66 100755 --- a/prepare_artifacts.sh +++ b/prepare_artifacts.sh @@ -148,7 +148,7 @@ else echo "Moving AppImage" mv build/linux/appimage/out/*.AppImage* artifacts/ - rename '_-_' '-' artifacts/*.AppImage + find artifacts -name '*.AppImage*' -exec bash -c 'mv $0 ${0/_-_/-}' {} \; fi VSCODE_PLATFORM="linux"