From 16074b0060368c83acd9ef1ff21d20230cc5b8d7 Mon Sep 17 00:00:00 2001 From: James Brechtel Date: Thu, 21 May 2026 11:15:39 -0400 Subject: [PATCH] fix: resolve convert-to-cooklang script path with makeAbsolute --- src/Roux/Server.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Roux/Server.hs b/src/Roux/Server.hs index 1e2827b..05e74ba 100644 --- a/src/Roux/Server.hs +++ b/src/Roux/Server.hs @@ -479,7 +479,7 @@ findConvertScript = do mPath <- findExecutable "convert-to-cooklang" case mPath of Just p -> pure p - Nothing -> pure "scripts/convert-to-cooklang" + Nothing -> makeAbsolute "scripts/convert-to-cooklang" -- | Write a temporary YAML config for the subprocess. writeConvertConfig :: FilePath -> AnthropicConfig -> IO ()