diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-05-24 09:12:23 +0200 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-05-24 15:37:08 +0200 |
commit | 76370492c9c0cdbb51b4f7c14e082c04b0b223d5 (patch) | |
tree | 054e7950f8bf7c08073fafe1253c5e8f86757cf9 /src/Job.hs | |
parent | 64669c18992339fa632bfea0bf13691844252777 (diff) |
Unify style of single quotes in output
Diffstat (limited to 'src/Job.hs')
-rw-r--r-- | src/Job.hs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -337,8 +337,8 @@ runJob job uses checkoutPath jdir = do [ path ] -> return path found -> do liftIO $ hPutStrLn logs $ - (if null found then "no file" else "multiple files") <> " found matching pattern `" <> - decompile pathPattern <> "' for artifact `" <> T.unpack tname <> "'" + (if null found then "no file" else "multiple files") <> " found matching pattern ‘" <> + decompile pathPattern <> "’ for artifact ‘" <> T.unpack tname <> "’" throwError JobFailed let target = adir </> T.unpack tname </> takeFileName path liftIO $ do |