mirror of
https://github.com/aclist/dztui.git
synced 2025-04-04 19:43:00 +02:00
Fix lockfile path
This commit is contained in:
parent
4a3521d711
commit
8cce75c418
1 changed files with 5 additions and 5 deletions
10
dzgui.sh
10
dzgui.sh
|
@ -215,7 +215,7 @@ freedesktop_dirs(){
|
|||
#TODO: update url
|
||||
curl -s "$version_url" > "$sd_install_path/dzgui.sh"
|
||||
chmod +x "$sd_install_path/dzgui.sh"
|
||||
img_url="$stable_url/images"
|
||||
img_url="$testing_url/images"
|
||||
for i in dzgui grid.png hero.png logo.png; do
|
||||
curl -s "$img_url/$i" > "$sd_install_path/$i"
|
||||
done
|
||||
|
@ -1712,10 +1712,10 @@ while true; do
|
|||
done
|
||||
}
|
||||
lock(){
|
||||
if [[ ! -f $config_path/.lockfile ]]; then
|
||||
touch $config_path/.lockfile
|
||||
if [[ ! -f ${config_path}.lockfile ]]; then
|
||||
touch ${config_path}.lockfile
|
||||
fi
|
||||
pid=$(cat $config_path/.lockfile)
|
||||
pid=$(cat ${config_path}.lockfile)
|
||||
ps -p $pid -o pid= >/dev/null 2>&1
|
||||
res=$?
|
||||
if [[ $res -eq 0 ]]; then
|
||||
|
@ -1725,7 +1725,7 @@ lock(){
|
|||
elif [[ $pid == $$ ]]; then
|
||||
:
|
||||
else
|
||||
echo $$ > $config_path/.lockfile
|
||||
echo $$ > ${config_path}.lockfile
|
||||
fi
|
||||
}
|
||||
fetch_helpers(){
|
||||
|
|
Loading…
Reference in a new issue