1
0
Fork 0
forked from lthn/blockchain

fixes AppImage filename derivation

This commit is contained in:
cryptozoidberg 2023-01-13 19:03:20 +01:00
parent 6ee87bacf9
commit 976ec78247
No known key found for this signature in database
GPG key ID: 22DEB97A54C6FDEC

View file

@ -114,7 +114,12 @@ rm -f ./Zano-x86_64.AppImage
package_filename=${ARCHIVE_NAME_PREFIX}${version_str}.AppImage
mv ./Zano-${commit_str}-x86_64.AppImage ./$package_filename
pattern="*.AppImage"
files=( $pattern )
app_image_file=${files[0]}
mv ./$app_image_file ./$package_filename
echo "Build success"