fix(linux): use find/mv instead of rename [skip ci]

This commit is contained in:
Baptiste Augrain 2022-08-29 23:41:30 +02:00
parent a549e0bdad
commit 083e25d289

View file

@ -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"