diff options
| author | Mike Vink <mike1994vink@gmail.com> | 2023-04-28 08:12:58 +0200 |
|---|---|---|
| committer | Mike Vink <mike1994vink@gmail.com> | 2023-04-28 08:12:58 +0200 |
| commit | fd3324ab989676d5f3fc0002ef8b39e2c240852d (patch) | |
| tree | aad44754929d17089660ff4dd7e14243293c1d16 /shell-scripts/compile | |
| parent | bbd7f0cb7dc2c4a6776021dd535bb510cf902e60 (diff) | |
aad kubernetes feed
Diffstat (limited to 'shell-scripts/compile')
| -rwxr-xr-x | shell-scripts/compile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/shell-scripts/compile b/shell-scripts/compile index fb96335..59c4d60 100755 --- a/shell-scripts/compile +++ b/shell-scripts/compile @@ -1,4 +1,4 @@ -#!/bin/bash +#!@bash@/bin/bash echo " Compiliiing ${@}" error () { @@ -7,12 +7,6 @@ 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 ${@}" @@ -32,6 +26,12 @@ case "${@}" in echo " \-> awx" awx "$@" | filter-ansi ;; + 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" + ;; *) echo "Nope. Not compiling that. ARGS: ${@}" ;; |
