From 3bbfb4d9330f8648721256418072bb3d625ff539 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Smr=C5=BE?= Date: Sat, 29 Mar 2025 21:26:56 +0100 Subject: Fix artifact work path to be again relative to checkout dir Changelog: Fix copying of artifact to appropriate working directory --- src/Job.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/Job.hs b/src/Job.hs index f147421..a9effba 100644 --- a/src/Job.hs +++ b/src/Job.hs @@ -343,10 +343,10 @@ runJob job uses checkoutPath jdir = do let target = adir T.unpack tname takeFileName path liftIO $ do createDirectoryIfMissing True $ takeDirectory target - copyFile (checkoutPath path) target + copyFile path target return $ ArtifactOutput { aoutName = name - , aoutWorkPath = path + , aoutWorkPath = makeRelative checkoutPath path , aoutStorePath = target } -- cgit v1.2.3