File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -174,8 +174,8 @@ execFlex' execConfig pkgBin envBin arguments = GHC.withFrozenCallStack $ do
174
174
, " ━━━━ command ━━━━"
175
175
, pkgBin <> " " <> L. unwords (fmap argQuote arguments)
176
176
]
177
- ++ if L. null stdout then [] else [" ━━━━ stdout ━━━━" , stdout]
178
- ++ if L. null stderr then [] else [" ━━━━ stderr ━━━━" , stderr]
177
+ ++ ( if L. null stdout then [] else [" ━━━━ stdout ━━━━" , stdout])
178
+ ++ ( if L. null stderr then [] else [" ━━━━ stderr ━━━━" , stderr])
179
179
H. failMessage GHC. callStack " Execute process failed"
180
180
IO. ExitSuccess -> return stdout
181
181
@@ -222,8 +222,8 @@ exec execConfig bin arguments = GHC.withFrozenCallStack $ do
222
222
, " ━━━━ command ━━━━"
223
223
, bin <> " " <> L. unwords (fmap argQuote arguments)
224
224
]
225
- ++ if L. null stdout then [] else [" ━━━━ stdout ━━━━" , stdout]
226
- ++ if L. null stderr then [] else [" ━━━━ stderr ━━━━" , stderr]
225
+ ++ ( if L. null stdout then [] else [" ━━━━ stdout ━━━━" , stdout])
226
+ ++ ( if L. null stderr then [] else [" ━━━━ stderr ━━━━" , stderr])
227
227
IO. ExitSuccess -> return stdout
228
228
229
229
-- | Execute a process, returning the error code, the stdout, and the stderr.
You can’t perform that action at this time.
0 commit comments