From 48816e0c13d14d12bdfe621a94f673280548ab0c Mon Sep 17 00:00:00 2001 From: Ibrahim Abou Elseoud Date: Fri, 6 Aug 2021 23:11:33 +0200 Subject: [PATCH] Update manifest.json to fix issue of 'expected one argument' Fix issue mentioned here: https://github.com/YunoHost-Apps/matterbridge_ynh/issues/11 It seems like a yunohost bug, but this is a workaround. --- manifest.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/manifest.json b/manifest.json index 096fc66..19fe9bc 100644 --- a/manifest.json +++ b/manifest.json @@ -26,6 +26,15 @@ "services": [], "arguments": { "install" : [ + { + "name": "is_placeholder_argument", + "type": "boolean", + "ask": { + "en": "This is a placeholder argument to fix no arguments problem in yunohost when the manifest needs no arguments from user", + "fr": "Il s'agit d'un argument d'espace réservé pour résoudre le problème d'absence d'arguments dans yunohost lorsque le manifeste n'a besoin d'aucun argument de l'utilisateur" + }, + "default": "true" + } ] } }