Removed Zip option

This commit is contained in:
Sohrab Behdani 2024-10-29 19:35:21 +03:30
parent 54ce20f6d5
commit 9e38328d04

View file

@ -34,7 +34,6 @@ main() {
echo -e "$Blue### install complete ###$reset"
echo -e "$Green### start build $reponame with archiso ###$reset"
build
makezip
fi
else
echo -e "$Red###os cant supported###$reset"
@ -50,11 +49,6 @@ build() {
set -e
mkarchiso -v iso/
}
makezip() {
cd out
7z -v500m a "$(ls *.iso)".zip "$(ls *.iso)"
md5sum * > md5sums.txt
}
main