mirror of
https://github.com/aclist/dztui.git
synced 2024-12-27 04:42:35 +01:00
fix: enclose paths
This commit is contained in:
parent
3cd99911a6
commit
3b5960cb16
2 changed files with 3 additions and 3 deletions
2
dzgui.sh
2
dzgui.sh
|
@ -587,7 +587,7 @@ fetch_helpers_by_sum(){
|
|||
["ui.py"]="99544ccef6060125509c4b689a808a15"
|
||||
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
|
||||
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
||||
["funcs"]="16caf08919f25b44340ed37de7c4265c"
|
||||
["funcs"]="5d69e8e3d7c3b3c499354b0b939ce76b"
|
||||
["lan"]="c62e84ddd1457b71a85ad21da662b9af"
|
||||
)
|
||||
local author="aclist"
|
||||
|
|
|
@ -1168,10 +1168,10 @@ $(print_ip_list | sed 's/"//g')
|
|||
$(list_mods | sed 's/^/\t/g')
|
||||
DOC
|
||||
#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
|
||||
cat "$line" | awk '/publishedid/ {print $3}' | sed 's/;//g;s/\r//g'
|
||||
done | sort > $meta_log
|
||||
done | sort > "$meta_log"
|
||||
#END
|
||||
printf "Wrote system log to %s" "$system_log"
|
||||
return 0
|
||||
|
|
Loading…
Reference in a new issue