diff options
| -rw-r--r-- | home/newsboat.nix | 1 | ||||
| -rwxr-xr-x | shell-scripts/compile | 14 |
2 files changed, 8 insertions, 7 deletions
diff --git a/home/newsboat.nix b/home/newsboat.nix index 6249e68..ae48bb0 100644 --- a/home/newsboat.nix +++ b/home/newsboat.nix @@ -13,6 +13,7 @@ {url = "https://github.com/ansible/awx/releases";} {url = "https://azurecomcdn.azureedge.net/en-us/updates/feed/?product=azure-devops";} {url = "https://www.hashicorp.com/blog/categories/products-technology/feed.xml";} + {url = "https://kubernetes.io/feed.xml";} ]; extraConfig = '' # general settings 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: ${@}" ;; |
