From da0432b37d9ace32308a03e99e7514afeb9ead51 Mon Sep 17 00:00:00 2001 From: Leah Tacke genannt Unterberg <leah.tgu@pads.rwth-aachen.de> Date: Mon, 3 Feb 2025 12:29:16 +0100 Subject: [PATCH] small update to justfile --- justfile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/justfile b/justfile index d109fc6..9d1ff9b 100644 --- a/justfile +++ b/justfile @@ -1,4 +1,4 @@ -set shell := ["pwsh", "-c"] +set windows-shell := ["pwsh", "-c"] ctxt := "minikube" ctxt_flag := "--context " + ctxt @@ -11,11 +11,7 @@ apply a: kubectl apply {{ ctxt_flag }} -f {{ a }} [no-exit-message] -apply-all: - just apply services.yaml - just apply config-maps.yaml - just apply backend-deployment.yaml - just apply frontend-deployment.yaml +apply-all: (apply "services.yaml") (apply "config-maps.yaml") (apply "backend-deployment.yaml") (apply "frontend-deployment.yaml") [no-exit-message] -- GitLab