1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-05 03:53:01 +02:00

Hotfix for symlink collisions

This commit is contained in:
aclist 2022-08-13 22:00:35 +09:00
parent c8c0bfbce4
commit 70f748fd19
2 changed files with 25 additions and 1 deletions

View file

@ -4,6 +4,10 @@
- Clean up logging
- Custom query API
## [2.4.2-rc.3] 2022-08-10
### Fixed
- Prevent collisions in symlink IDs
## [2.4.2-rc.2] 2022-08-10
### Fixed
- Pass correct query ports to modlist function

View file

@ -335,7 +335,7 @@ manual_mod_install(){
passed_mod_check
}
encode(){
echo "$1" | awk '{printf("%c",$1)}' | base64 | sed 's/\//_/g; s/=//g; s/+/]/g'
echo "$1" | md5sum | cut -c -8
}
stale_symlinks(){
for l in $(find "$game_dir" -xtype l); do
@ -942,7 +942,27 @@ while true; do
fi
done
}
#cleanup(){
# rm $config_path/.lockfile
#}
lock(){
if [[ ! -f $config_path/.lockfile ]]; then
touch $config_path/.lockfile
fi
pid=$(cat $config_path/.lockfile)
ps -p $pid -o pid= >/dev/null 2>&1
res=$?
if [[ $res -eq 0 ]]; then
echo "[DZGUI] Already running ($pid)"
exit
elif [[ $pid == $$ ]]; then
:
else
echo $$ > $config_path/.lockfile
fi
}
main(){
lock
run_depcheck
check_architecture
check_version