mirror of
https://github.com/YunoHost-Apps/gotosocial_ynh.git
synced 2024-09-03 19:16:06 +02:00
5701ab4342
Co-authored-by: yunohost-bot <yunohost@yunohost.org> Co-authored-by: rosbeef andino <romain.raynaud@3cmr.fr>
22 lines
627 B
Bash
22 lines
627 B
Bash
#!/bin/bash
|
|
|
|
#=================================================
|
|
# COMMON VARIABLES
|
|
#=================================================
|
|
|
|
#=================================================
|
|
# PERSONAL HELPERS
|
|
#=================================================
|
|
|
|
# custom function to change bash bool 0/1 to false/true
|
|
convert_bool(){
|
|
(("$1")) && echo "true" || echo "false"
|
|
}
|
|
|
|
#=================================================
|
|
# EXPERIMENTAL HELPERS
|
|
#=================================================
|
|
|
|
#=================================================
|
|
# FUTURE OFFICIAL HELPERS
|
|
#=================================================
|