1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gotosocial_ynh.git synced 2024-09-03 19:16:06 +02:00

fix convert_bool sigh

This commit is contained in:
OniriCorpe 2022-03-26 04:58:48 +01:00
parent 0de668e65b
commit e7693f729f

View file

@ -33,7 +33,7 @@ detect_arch(){
# custom function to change bash bool 0/1 to false/true
convert_bool(){
$1 && echo "true" || echo "false"
(($1)) && echo "true" || echo "false"
}
#=================================================