From b395bd4f56a7a8e3120278dc5bbfcc44fa512a5a Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 4 Mar 2025 10:02:33 -0400 Subject: [PATCH] move showOutput into compute remote --- Command/AddComputed.hs | 1 - Remote/Compute.hs | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/Command/AddComputed.hs b/Command/AddComputed.hs index b0127b10ba..f54f2de802 100644 --- a/Command/AddComputed.hs +++ b/Command/AddComputed.hs @@ -97,7 +97,6 @@ perform o r = do , Remote.Compute.computeReproducible = False } fast <- Annex.getRead Annex.fast - showOutput Remote.Compute.runComputeProgram program state (Remote.Compute.ImmutableState False) (getInputContent fast) diff --git a/Remote/Compute.hs b/Remote/Compute.hs index 2903f926b2..60b2e30185 100644 --- a/Remote/Compute.hs +++ b/Remote/Compute.hs @@ -374,6 +374,7 @@ runComputeProgram (ComputeProgram program) state (ImmutableState immutablestate) , std_out = CreatePipe , env = Just environ } + showOutput starttime <- liftIO currentMonotonicTimestamp state' <- bracket (liftIO $ createProcess pr)