Update release script

This commit is contained in:
Roman Jaroš 2024-08-25 12:22:10 +02:00
parent ed20b006ec
commit 595b58ee99
2 changed files with 7 additions and 3 deletions

View file

@ -2,7 +2,7 @@
## Title: CzechQuests
## Notes: Addon displays texts of quests in Czech language as tooltip
## Author: Roman Jaroš
## Version: 0.1.9
## Version: 0.1.10
## SavedVariables: CzechQuestsAddon_Store
CzechQuests.lua

View file

@ -62,9 +62,13 @@ make_zip() {
files_to_zip+=("$line")
done < <(find . -name "*.lua" -path "./Quests/Frames/*")
# includes frames
while IFS= read -r line; do
files_to_zip+=("$line")
done < <(find . -name "*.ttf" -path "./Fonts/*")
# includes other files
files_to_zip+=("./Quests/Data/other.lua" "./Quests/Quests.lua" "./Quests/Utils.lua" "./Init.lua")
files_to_zip+=("./morpheus_cz.ttf" "./frizquadratatt_cz.ttf")
files_to_zip+=("./Quests/Data/other.lua" "./Quests/Quests.lua" "./Quests/Utils.lua" "./CzechQuests.lua")
# prepare output directory
for file in "${files_to_zip[@]}"; do