diff --git a/scripts/doc/create-docu-file-stubs.sh b/scripts/doc/create-docu-file-stubs.sh index 2cb2867cebcef823d72c421edc79581d5fff05fa..c2c314fb84b139f902dd7ce300875885b546f05f 100755 --- a/scripts/doc/create-docu-file-stubs.sh +++ b/scripts/doc/create-docu-file-stubs.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # This script creates missing file in the OGS input file documentation source tree. # It expects input from get-project-params.sh @@ -32,27 +32,27 @@ done \ bdn="`basename "$dn"`" if [ "`expr match "$bdn" '^[A-Z]'`" -eq 0 ] && [ ! -f "$dn/i_$bdn.md" ]; then echo "creating $dn/i_$bdn.md" - echo '\todo document' >"$dn/i_$bdn.md" + echo '\ogs_missing_documentation' >"$dn/i_$bdn.md" elif [ "`expr match "$bdn" '^[A-Z]'`" -ne 0 ] && [ ! -f "$dn/c_$bdn.md" ]; then echo "creating $dn/c_$bdn.md" - echo '\todo document' >"$dn/c_$bdn.md" + echo '\ogs_missing_documentation' >"$dn/c_$bdn.md" fi fi if [ -d "$path" ]; then if [ "`expr match "$bn" '^[A-Z]'`" -eq 0 ] && [ ! -f "$path/i_$bn.md" ]; then echo "creating $path/i_$bn.md" - echo '\todo document' >"$path/i_$bn.md" + echo '\ogs_missing_documentation' >"$path/i_$bn.md" elif [ "`expr match "$bn" '^[A-Z]'`" -ne 0 ] && [ ! -f "$path/c_$bn.md" ]; then echo "creating $path/c_$bn.md" - echo '\todo document' >"$path/c_$bn.md" + echo '\ogs_missing_documentation' >"$path/c_$bn.md" fi elif [ "$param_or_attr" = param ] && [ ! -f "$dn/t_$bn.md" ]; then echo "creating $dn/t_$bn.md" - echo '\todo document' >"$dn/t_$bn.md" + echo '\ogs_missing_documentation' >"$dn/t_$bn.md" elif [ "$param_or_attr" = attr ] && [ ! -f "$dn/a_$bn.md" ]; then echo "creating $dn/a_$bn.md" - echo '\todo document' >"$dn/a_$bn.md" + echo '\ogs_missing_documentation' >"$dn/a_$bn.md" # else # echo "OK $path" fi