Loading process-templates.sh +7 −7 Original line number Diff line number Diff line Loading @@ -210,31 +210,31 @@ function build_aggregated_toc() { echo "- Templates Reference:" if [[ -f "$tmp_dir/toc/build" ]]; then echo " - Build & Test:" sort "$tmp_dir/toc/build" | sed 's/^/ /' sort --ignore-case "$tmp_dir/toc/build" | sed 's/^/ /' fi if [[ -f "$tmp_dir/toc/analyse" ]]; then echo " - Code Analysis:" sort "$tmp_dir/toc/analyse" | sed 's/^/ /' sort --ignore-case "$tmp_dir/toc/analyse" | sed 's/^/ /' fi if [[ -f "$tmp_dir/toc/package" ]]; then echo " - Packaging:" sort "$tmp_dir/toc/package" | sed 's/^/ /' sort --ignore-case "$tmp_dir/toc/package" | sed 's/^/ /' fi if [[ -f "$tmp_dir/toc/infrastructure" ]]; then echo " - Infrastructure:" sort "$tmp_dir/toc/infrastructure" | sed 's/^/ /' sort --ignore-case "$tmp_dir/toc/infrastructure" | sed 's/^/ /' fi if [[ -f "$tmp_dir/toc/hosting" ]]; then echo " - Deploy & Run:" sort "$tmp_dir/toc/hosting" | sed 's/^/ /' sort --ignore-case "$tmp_dir/toc/hosting" | sed 's/^/ /' fi if [[ -f "$tmp_dir/toc/acceptance" ]]; then echo " - Acceptance:" sort "$tmp_dir/toc/acceptance" | sed 's/^/ /' sort --ignore-case "$tmp_dir/toc/acceptance" | sed 's/^/ /' fi if [[ -f "$tmp_dir/toc/others" ]]; then echo " - Others:" sort "$tmp_dir/toc/others" | sed 's/^/ /' sort --ignore-case "$tmp_dir/toc/others" | sed 's/^/ /' fi } > "$toc_file" cat "$toc_file" Loading Loading
process-templates.sh +7 −7 Original line number Diff line number Diff line Loading @@ -210,31 +210,31 @@ function build_aggregated_toc() { echo "- Templates Reference:" if [[ -f "$tmp_dir/toc/build" ]]; then echo " - Build & Test:" sort "$tmp_dir/toc/build" | sed 's/^/ /' sort --ignore-case "$tmp_dir/toc/build" | sed 's/^/ /' fi if [[ -f "$tmp_dir/toc/analyse" ]]; then echo " - Code Analysis:" sort "$tmp_dir/toc/analyse" | sed 's/^/ /' sort --ignore-case "$tmp_dir/toc/analyse" | sed 's/^/ /' fi if [[ -f "$tmp_dir/toc/package" ]]; then echo " - Packaging:" sort "$tmp_dir/toc/package" | sed 's/^/ /' sort --ignore-case "$tmp_dir/toc/package" | sed 's/^/ /' fi if [[ -f "$tmp_dir/toc/infrastructure" ]]; then echo " - Infrastructure:" sort "$tmp_dir/toc/infrastructure" | sed 's/^/ /' sort --ignore-case "$tmp_dir/toc/infrastructure" | sed 's/^/ /' fi if [[ -f "$tmp_dir/toc/hosting" ]]; then echo " - Deploy & Run:" sort "$tmp_dir/toc/hosting" | sed 's/^/ /' sort --ignore-case "$tmp_dir/toc/hosting" | sed 's/^/ /' fi if [[ -f "$tmp_dir/toc/acceptance" ]]; then echo " - Acceptance:" sort "$tmp_dir/toc/acceptance" | sed 's/^/ /' sort --ignore-case "$tmp_dir/toc/acceptance" | sed 's/^/ /' fi if [[ -f "$tmp_dir/toc/others" ]]; then echo " - Others:" sort "$tmp_dir/toc/others" | sed 's/^/ /' sort --ignore-case "$tmp_dir/toc/others" | sed 's/^/ /' fi } > "$toc_file" cat "$toc_file" Loading