Update release script
This commit is contained in:
parent
ed20b006ec
commit
595b58ee99
2 changed files with 7 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
||||||
## Title: CzechQuests
|
## Title: CzechQuests
|
||||||
## Notes: Addon displays texts of quests in Czech language as tooltip
|
## Notes: Addon displays texts of quests in Czech language as tooltip
|
||||||
## Author: Roman Jaroš
|
## Author: Roman Jaroš
|
||||||
## Version: 0.1.9
|
## Version: 0.1.10
|
||||||
## SavedVariables: CzechQuestsAddon_Store
|
## SavedVariables: CzechQuestsAddon_Store
|
||||||
|
|
||||||
CzechQuests.lua
|
CzechQuests.lua
|
||||||
|
|
|
@ -62,9 +62,13 @@ make_zip() {
|
||||||
files_to_zip+=("$line")
|
files_to_zip+=("$line")
|
||||||
done < <(find . -name "*.lua" -path "./Quests/Frames/*")
|
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
|
# includes other files
|
||||||
files_to_zip+=("./Quests/Data/other.lua" "./Quests/Quests.lua" "./Quests/Utils.lua" "./Init.lua")
|
files_to_zip+=("./Quests/Data/other.lua" "./Quests/Quests.lua" "./Quests/Utils.lua" "./CzechQuests.lua")
|
||||||
files_to_zip+=("./morpheus_cz.ttf" "./frizquadratatt_cz.ttf")
|
|
||||||
|
|
||||||
# prepare output directory
|
# prepare output directory
|
||||||
for file in "${files_to_zip[@]}"; do
|
for file in "${files_to_zip[@]}"; do
|
||||||
|
|
Loading…
Add table
Reference in a new issue