summaryrefslogtreecommitdiff
path: root/server/Worker.hs
diff options
context:
space:
mode:
Diffstat (limited to 'server/Worker.hs')
-rw-r--r--server/Worker.hs9
1 files changed, 7 insertions, 2 deletions
diff --git a/server/Worker.hs b/server/Worker.hs
index a9ffce3..d85c44f 100644
--- a/server/Worker.hs
+++ b/server/Worker.hs
@@ -98,6 +98,7 @@ runJob offline config Job {..} done = do
$ readgit' gitdir ["rev-parse", toString ref]
let outPath = adjustedPath rev jobOrg
+ let humanOutPath = orgHumanWebdir jobOrg <> "/" <> reponame jobRef
callgit gitdir [ "worktree", "add", "--force", workdir, toString ref ]
@@ -106,13 +107,17 @@ runJob offline config Job {..} done = do
liftIO (writeAdjustedRepository lintConfig workdir (toString outPath) res)
>>= \case
- ExitSuccess ->
+ ExitSuccess -> do
logInfoN $ "linted map "+| (show jobRef :: Text) |+"."
+ logInfoN $ "symlinking"+|outPath|+"into human web dir at"+|humanOutPath|+""
+ liftIO $ callProcess "ln" [ "-sfn", toString outPath, toString humanOutPath ]
ExitFailure 1 ->
logInfoN $ "linted map "+| (show jobRef :: Text) |+ ", which failed."
- ExitFailure 2 ->
+ ExitFailure 2 -> do
-- TODO: shouldn't have linted this map at all
logErrorN $ "outpath "+|outPath|+" already exists!"
+ logInfoN $ "symlinking"+|outPath|+"into human web dir at"+|humanOutPath|+""
+ liftIO $ callProcess "ln" [ "-sfn", toString outPath, toString humanOutPath ]
ExitFailure _ ->
-- writeAdjustedRepository does not return other codes
$(logError) "wtf, this is impossible"