diff options
Diffstat (limited to 'src/Command/Extract.hs')
| -rw-r--r-- | src/Command/Extract.hs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/Command/Extract.hs b/src/Command/Extract.hs index 8a0a035..cc92587 100644 --- a/src/Command/Extract.hs +++ b/src/Command/Extract.hs @@ -78,7 +78,7 @@ cmdExtract (ExtractCommand ExtractOptions {..} ExtractArguments {..}) = do              _     -> return False      forM_ extractArtifacts $ \( ref, ArtifactName aname ) -> do -        jid@(JobId ids) <- either (tfail . textEvalError) (return . jobId) =<< +        jid@(JobId ids) <- either (tfail . textEvalError) (return . jobId . fst) =<<              liftIO (runEval (evalJobReference ref) einput)          let jdir = joinPath $ (storageDir :) $ ("jobs" :) $ map (T.unpack . textJobIdPart) ids |