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

26 lines
695 B
Bash
Raw Normal View History

2023-03-03 10:07:36 +01:00
#!/bin/bash
#=================================================
# COMMON VARIABLES
#=================================================
2023-07-16 21:27:53 +02:00
ynh_arch="$YNH_ARCH"
2023-03-03 10:07:36 +01:00
#=================================================
# PERSONAL HELPERS
#=================================================
2023-03-06 21:25:34 +01:00
myynh_set_permissions () {
chown -R $app: "$install_dir"
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chmod -R +x "$install_dir/bin/"
}
2023-03-03 10:07:36 +01:00
#=================================================
# EXPERIMENTAL HELPERS
#=================================================
#=================================================
# FUTURE OFFICIAL HELPERS
#=================================================