diff options
Diffstat (limited to 'shell-scripts')
| -rwxr-xr-x[-rw-r--r--] | shell-scripts/compile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/shell-scripts/compile b/shell-scripts/compile index 102d4b8..fb96335 100644..100755 --- a/shell-scripts/compile +++ b/shell-scripts/compile @@ -1,4 +1,4 @@ -#!@bash@/bin/bash +#!/bin/bash echo " Compiliiing ${@}" error () { @@ -7,6 +7,12 @@ error () { } case "${@}" in + helm\ lint*) + shift + shift + echo " \-> helm lint --set cluster=debug-cluster --strict --quiet --with-subcharts ${@}" + helm lint --set cluster=debug-cluster --strict --quiet --with-subcharts ${@} | sed -u -E -e "s@$(basename ${PWD})/|error during tpl function execution for \".*\"@@g" + ;; racket*) shift echo " \-> racket -l errortrace -t ${@}" |
