mirror of
https://github.com/YunoHost-Apps/workout-tracker_ynh.git
synced 2024-09-03 20:36:03 +02:00
fix boolean
This commit is contained in:
parent
e9a5e2fb34
commit
6930f3b18b
1 changed files with 7 additions and 0 deletions
|
@ -12,6 +12,13 @@ source /usr/share/yunohost/helpers
|
|||
jwt_key=$(ynh_string_random --length=45 | base64)
|
||||
ynh_app_setting_set --app=$app --key=jwt_key --value=$jwt_key
|
||||
|
||||
if [ $registration == "0" ]; then
|
||||
registration="false"
|
||||
else
|
||||
registration="true"
|
||||
fi
|
||||
|
||||
|
||||
#=================================================
|
||||
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
||||
#=================================================
|
||||
|
|
Loading…
Add table
Reference in a new issue