diff --git a/justfile b/justfile
index d109fc6a5fb93f8ef35aead33f4c645ecf621fa0..9d1ff9ba3bcc10d39ab3845e013b7c5662a95483 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]