Browse Source
Merge pull request #84 from YunoHost-Apps/fix-config
fix config is_public
pull/87/head
Maniack Crudelis
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
scripts/config
|
|
@ -88,7 +88,7 @@ show_config() { |
|
|
apply_config() { |
|
|
apply_config() { |
|
|
|
|
|
|
|
|
# Change public accessibility |
|
|
# Change public accessibility |
|
|
if [ "$is_public" = "true" ] |
|
|
|
|
|
|
|
|
if [ "$is_public" = "1" ] |
|
|
then |
|
|
then |
|
|
yunohost app action run $app public_private --args is_public=1 |
|
|
yunohost app action run $app public_private --args is_public=1 |
|
|
else |
|
|
else |
|
|
|