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:
parent
c8c0bfbce4
commit
70f748fd19
2 changed files with 25 additions and 1 deletions
|
@ -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
|
||||
|
|
22
dzgui.sh
22
dzgui.sh
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue