mirror of
https://github.com/aclist/dztui.git
synced 2025-04-06 04:23:00 +02:00
fix: force printf locale (#74)
This commit is contained in:
parent
99d4fa73cd
commit
08669fa435
1 changed files with 2 additions and 2 deletions
4
dzgui.sh
4
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version=3.3.9
|
version=3.3.10
|
||||||
|
|
||||||
aid=221100
|
aid=221100
|
||||||
game="dayz"
|
game="dayz"
|
||||||
|
@ -1385,7 +1385,7 @@ get_dist(){
|
||||||
echo "$dist"
|
echo "$dist"
|
||||||
else
|
else
|
||||||
local dist=$($km_helper "$local_lat" "$local_lon" "$remote_lat" "$remote_lon")
|
local dist=$($km_helper "$local_lat" "$local_lon" "$remote_lat" "$remote_lon")
|
||||||
printf "%05.0f %s" "$dist" "km"
|
LC_NUMERIC=C printf "%05.0f %s" "$dist" "km"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
prepare_filters(){
|
prepare_filters(){
|
||||||
|
|
Loading…
Reference in a new issue