1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2024-12-27 21:02:36 +01:00

fix: enclose paths

This commit is contained in:
aclist 2024-12-23 21:38:15 +09:00
parent 3cd99911a6
commit 3b5960cb16
2 changed files with 3 additions and 3 deletions

View file

@ -587,7 +587,7 @@ fetch_helpers_by_sum(){
["ui.py"]="99544ccef6060125509c4b689a808a15" ["ui.py"]="99544ccef6060125509c4b689a808a15"
["query_v2.py"]="55d339ba02512ac69de288eb3be41067" ["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
["funcs"]="16caf08919f25b44340ed37de7c4265c" ["funcs"]="5d69e8e3d7c3b3c499354b0b939ce76b"
["lan"]="c62e84ddd1457b71a85ad21da662b9af" ["lan"]="c62e84ddd1457b71a85ad21da662b9af"
) )
local author="aclist" local author="aclist"

View file

@ -1168,10 +1168,10 @@ $(print_ip_list | sed 's/"//g')
$(list_mods | sed 's/^/\t/g') $(list_mods | sed 's/^/\t/g')
DOC DOC
#2024-12-13 #2024-12-13
find $workshop_dir -mindepth 1 -maxdepth 1 -type d | awk -F/ '{print $NF}' | sort > $mod_log find $workshop_dir -mindepth 1 -maxdepth 1 -type d | awk -F/ '{print $NF}' | sort > "$mod_log"
find $workshop_dir -mindepth 1 -name meta.cpp | while read -r line; do find $workshop_dir -mindepth 1 -name meta.cpp | while read -r line; do
cat "$line" | awk '/publishedid/ {print $3}' | sed 's/;//g;s/\r//g' cat "$line" | awk '/publishedid/ {print $3}' | sed 's/;//g;s/\r//g'
done | sort > $meta_log done | sort > "$meta_log"
#END #END
printf "Wrote system log to %s" "$system_log" printf "Wrote system log to %s" "$system_log"
return 0 return 0