From d0f50798836691f4ddb3c934fc9f921f0c4f720c Mon Sep 17 00:00:00 2001 From: Risu <79110363+risu729@users.noreply.github.com> Date: Wed, 4 Dec 2024 19:38:42 +0900 Subject: [PATCH] chore(mise.toml): use posix sh syntax for hooks --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index 2342d876..4eba51fb 100644 --- a/mise.toml +++ b/mise.toml @@ -228,4 +228,4 @@ hide = true [hooks] # skip in CI -postinstall = "[[ \"${CI}\" == 'true' ]] || mise run buni" +postinstall = "[ \"$CI\" = 'true' ] || mise run buni"