From 5851dcbbe6c8da00d3dab09afa60ec781d9cb508 Mon Sep 17 00:00:00 2001 From: LoHertel Date: Wed, 22 May 2024 21:29:01 +0200 Subject: [PATCH] fix: calling `rm` command in fish --- hack/switch/switch.fish | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/switch/switch.fish b/hack/switch/switch.fish index 4a9515e7..c2cc9bd4 100755 --- a/hack/switch/switch.fish +++ b/hack/switch/switch.fish @@ -59,7 +59,7 @@ function kubeswitch set -l switchTmpDirectory "$HOME/.kube/.switch_tmp/config" if test -n "$KUBECONFIG"; and string match -q "*$switchTmpDirectory*" -- "$KUBECONFIG" - \rm -f "$KUBECONFIG" + command rm -f "$KUBECONFIG" end set -gx KUBECONFIG "$KUBECONFIG_PATH"