1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-04 19:43:00 +02:00

fix: update URL

This commit is contained in:
aclist 2023-05-27 15:09:31 +09:00
parent 42a8a076ab
commit 24b07a9bf9

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -o pipefail set -o pipefail
version=3.4.0-rc.7 version=3.4.0-rc.8
aid=221100 aid=221100
game="dayz" game="dayz"
@ -36,7 +36,7 @@ scmd_url="$testing_url/helpers/scmd.sh"
vdf2json_url="$testing_url/helpers/vdf2json.py" vdf2json_url="$testing_url/helpers/vdf2json.py"
notify_url="$testing_url/helpers/d.html" notify_url="$testing_url/helpers/d.html"
notify_img_url="$testing_url/helpers/d.webp" notify_img_url="$testing_url/helpers/d.webp"
forum_url="https://old.reddit.com/r/dzgui" forum_url="https://github.com/aclist/dztui/discussions"
version_file="$config_path/versions" version_file="$config_path/versions"
steamsafe_zenity="/usr/bin/zenity" steamsafe_zenity="/usr/bin/zenity"
@ -465,28 +465,21 @@ legacy_symlinks(){
done done
} }
symlinks(){ symlinks(){
[[ -f $config_path/dzdebug ]] && rm $config_path/dzdebug
readarray -t wdirs < <(find "$workshop_dir"/*/meta.cpp) readarray -t wdirs < <(find "$workshop_dir"/*/meta.cpp)
echo "found ${#wdirs[@]} mods" >> $config_path/dzdebug
for (( i = 0; i < ${#wdirs[@]}; i++ )); do for (( i = 0; i < ${#wdirs[@]}; i++ )); do
echo "# Processing symlink $i of ${#wdirs[@]}" echo "# Processing symlink $i of ${#wdirs[@]}"
id=$(awk -F"= " '/publishedid/ {print $2}' "${wdirs[$i]}" | awk -F\; '{print $1}') id=$(awk -F"= " '/publishedid/ {print $2}' "${wdirs[$i]}" | awk -F\; '{print $1}')
mod=$(awk -F\" '/name/ {print $2}' "${wdirs[$i]}" | sed -E 's/[^[:alpha:]0-9]+/_/g; s/^_|_$//g') mod=$(awk -F\" '/name/ {print $2}' "${wdirs[$i]}" | sed -E 's/[^[:alpha:]0-9]+/_/g; s/^_|_$//g')
encoded_id=$(encode "$id") encoded_id=$(encode "$id")
link="@$encoded_id" link="@$encoded_id"
echo "link: $link" >> $config_path/dzdebug
if [[ -h "$game_dir/$link" ]]; then if [[ -h "$game_dir/$link" ]]; then
echo "link exists" >> $config_path/dzdebug
: :
else else
ln -fs "${wdirs[$i]}" "$game_dir/$link" ln -fs "${wdirs[$i]}" "$game_dir/$link"
echo "making link" >> $config_path/dzdebug
fi fi
done done
echo "finished symlinks" >> $config_path/dzdebug
} }
passed_mod_check(){ passed_mod_check(){
#legacy_symlinks
symlinks symlinks
echo "100" echo "100"
} }