diff --git a/create_tar_aarch64.sh b/create_tar_aarch64.sh new file mode 100755 index 00000000..f820fd7f --- /dev/null +++ b/create_tar_aarch64.sh @@ -0,0 +1,6 @@ +#!/bin/bash +pushd build +cp ../packaging_files/PolyGlot0.png image/ +cp ../io.github.DraqueT.PolyGlot.desktop image/ +tar -C image/ -czvf image_aarch64.tar.gz . +popd diff --git a/create_tar_x86_64.sh b/create_tar_x86_64.sh new file mode 100755 index 00000000..e0aca648 --- /dev/null +++ b/create_tar_x86_64.sh @@ -0,0 +1,6 @@ +#!/bin/bash +pushd build +cp ../packaging_files/PolyGlot0.png image/ +cp ../io.github.DraqueT.PolyGlot.desktop image/ +tar -C image/ -czvf image_x86_64.tar.gz . +popd