]> Nishi Git Mirror - gwion.git/commitdiff
:art: Fix and Update
authorfennecdjay <astor.jeremie@wanadoo.fr>
Sun, 13 Oct 2019 17:30:09 +0000 (19:30 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Sun, 13 Oct 2019 17:30:09 +0000 (19:30 +0200)
Makefile
scripts/doc-config.sh
src/lib/import.c

index 1e53932256b7d8e778927ee4fbc75875de1aadee..4d954979f01c4eb5b5594622485d8c2fcf207b7a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -121,7 +121,7 @@ test:
 coverity:
        $(shell git branch | grep "*" | cut -d" " -f2 > .branch)
        [ -z "$(git ls-remote --heads $(git remote get-url origin) coverity_scan)" ] || git push origin :coverity_scan
-       git show-ref --verify --quiet refs/heads/master && git branch -D coverity_scan
+       git show-ref --verify --quiet refs/heads/master && git branch -D coverity_scan || echo ""
        git checkout -b coverity_scan
        git push --set-upstream origin coverity_scan
        git checkout $(cat .branch)
index 01067a63b787edfcf48b4418aee6715d303737ad..2a8ddd41b58fb42f03c69a10b8bc55616155fe3a 100644 (file)
@@ -10,14 +10,21 @@ list_dir() {
   do
     if [ -d "$a" ]
     then [[ "$a" == */"assets" ]] ||
-         echo "$2- '$(basename "$a" | sed 's/[0-9][0-9]_//' | sed 's/_/ /g' | sed 's/-/ /g')':"; list_dir "$a" "$2"
-    else echo "$a" | grep "\.md$" >/dev/null  && echo "$2- '$(title "$a")': ${a:5}"
+         echo "$2- '$(basename "$a" | sed 's/[0-9][0-9]_//' | sed 's/_/ /g' | sed 's/-/ /g')':";
+         list_dir "$a" "$2"'  '
+    else
+      TITLE=$(title "$a")
+      if [ ! -z "$TITLE" ]
+      then
+echo "$a" | grep "\.md$" >/dev/null  && echo "$2- '$(title "$a")': ${a:5}"
+      fi
     fi
   done
 }
 
 echo "site_name: Gwion"
-echo "theme: windmill"
+#echo "theme: windmill"
+echo "theme: readthedocs"
 echo "repo_url: https://github.com/fennecdjay/Gwion"
 echo "site_description: a strongly timed musical programming language"
 echo "site_author: Jérémie Astor"
index dc3a0727ce15f624910402e7e152ca34266784fd..0744743ce9967f2f5159cfd1939e83ffc4981a2d 100644 (file)
@@ -607,7 +607,7 @@ ANN static Exp make_exp(const Gwi gwi, const m_str type, const m_str name) {
   const Env env = gwi->gwion->env;
   m_uint array_depth;
   Array_Sub array = NULL;
-  CHECK_OO(const ID_List, id_list, = str2list(env, type, &array_depth, gwi->loc))
+  DECL_OO(const ID_List, id_list, = str2list(env, type, &array_depth, gwi->loc))
   if(array_depth) {
     array = new_array_sub(env->gwion->mp, NULL);
     array->depth = array_depth;