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

23 lines
627 B
Bash
Raw Normal View History

2021-08-15 21:48:06 +02:00
#!/bin/bash
#=================================================
# COMMON VARIABLES
#=================================================
#=================================================
# PERSONAL HELPERS
#=================================================
# custom function to change bash bool 0/1 to false/true
convert_bool(){
2022-03-26 05:35:44 +01:00
(("$1")) && echo "true" || echo "false"
}
2021-08-15 21:48:06 +02:00
#=================================================
# EXPERIMENTAL HELPERS
#=================================================
#=================================================
# FUTURE OFFICIAL HELPERS
#=================================================