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
OniriCorpe 5701ab4342
use 'armhf' instead of 'armv6/7' (#147)
Co-authored-by: yunohost-bot <yunohost@yunohost.org>
Co-authored-by: rosbeef andino <romain.raynaud@3cmr.fr>
2024-06-14 23:15:59 +02:00

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
#=================================================