Closed mislav closed 2 years ago
Merging #61 (babaa6c) into main (f8f0187) will not change coverage. The diff coverage is
n/a
.
@@ Coverage Diff @@
## main #61 +/- ##
=======================================
Coverage 89.24% 89.24%
=======================================
Files 3 3
Lines 586 586
=======================================
Hits 523 523
Misses 48 48
Partials 15 15
Continue to review full report at Codecov.
Legend - Click here to learn more
Δ = absolute <relative> (impact)
,ø = not affected
,? = missing data
Powered by Codecov. Last update f8f0187...babaa6c. Read the comment docs.
It's nice that it works even if we have .\git.bat
in the directory. https://github.com/golang/go/issues/43724#issuecomment-763734001
Thank you!
You're welcome! This allows me to use gh poi
in the GitHub CLI repository, where I have a local bin/gh
executable and my PATH set up to include ./bin
. Before, gh poi
mysteriously failed because the execabs
error was swallowed 😅
Before:
cmd.Start()
error was not reported in the wrapped error messagecmd.Wait()
was swallowedexecabs
package was used for securityNow:
Start() + Wait()
are replaced withcmd.Run()
Run()
error is wrapped but not swallowedsafeexec
package is used to allow relative PATH entries