From eefbdc692eb9c0b7179bbd33e03fcfc96861207a Mon Sep 17 00:00:00 2001 From: vados Date: Wed, 6 Mar 2024 12:16:47 +0900 Subject: [PATCH] fix(ops): use zsh for better cross-platform support --- Justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Justfile b/Justfile index 41bcdf7..dc573d5 100644 --- a/Justfile +++ b/Justfile @@ -153,7 +153,7 @@ img_dockerfile_path := "infra" / "docker" / "pg_idkit-pg" + pg_image_version + " # Ensure that that a given file is present _ensure-file file: - #!/usr/bin/bash + #!/usr/bin/env -S zsh if [ ! -f "{{file}}" ] ; then echo "[error] file [{{file}}] is required, but missing"; exit 1;