fix: resolve convert-to-cooklang script path with makeAbsolute
Build and Deploy / build-and-deploy (push) Successful in 1m46s

This commit is contained in:
2026-05-21 11:15:39 -04:00
parent 76fb927109
commit 16074b0060
+1 -1
View File
@@ -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 ()