summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Job.hs4
1 files changed, 2 insertions, 2 deletions
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
}