From 98292a60dc457b8b1d371d527ce68cd291c06b9f Mon Sep 17 00:00:00 2001 From: Sergii Kabashniuk Date: Tue, 4 Sep 2018 12:41:28 +0300 Subject: [PATCH] Add plugin's description to plugins list response (#18) --- index.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.sh b/index.sh index 037b96cb60..c2ea3ab4fa 100755 --- a/index.sh +++ b/index.sh @@ -17,7 +17,7 @@ do # 1. read meta.yaml to stio cat $i| \ # 2. filter lines with name,version,type - grep -e 'name:' -e 'version:' -e 'type:' -e 'id:' |\ + grep -e 'name:' -e 'version:' -e 'type:' -e 'id:' -e 'description' |\ # 3. Replace ` :` with `":"` sed 's/: /\":"/g' |\ # 4. Append `",` to the end of each line