1
0
Files
resourcepack/build.sh
2026-04-06 19:31:33 +02:00

12 lines
251 B
Bash
Executable File

#!/bin/bash
readonly FILENAME=noemie-mc.zip
rm ${FILENAME} 2>/dev/null
echo '-- Creating archive'
zip -r ${FILENAME} pack.mcmeta pack.png assets/
echo '-- File path'
realpath ${FILENAME}
echo '-- Printing hash'
sha1sum ${FILENAME} | cut -d ' ' -f 1