summaryrefslogtreecommitdiff
path: root/unix.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-01-18 05:01:54 -0600
committerJeff Carr <[email protected]>2024-01-18 05:01:54 -0600
commit623b35629bb3617d0f541729646007159f8ae56a (patch)
tree95e870c4268ffce17a8429b9a2fbf58addf3f931 /unix.go
parentff3a51f3544a255b2b2bcd489e7ef71a12e7196a (diff)
new pathsv0.12.10
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'unix.go')
-rw-r--r--unix.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix.go b/unix.go
index 716798e..6d3615c 100644
--- a/unix.go
+++ b/unix.go
@@ -146,7 +146,7 @@ func RunCmd(workingpath string, parts []string) (error, bool, string) {
output, err := cmd.CombinedOutput()
if err != nil {
log.Error(err)
- log.Warn("output was", output)
+ log.Warn("output was", string(output))
log.Warn("cmd exited with error", err)
return err, false, string(output)
}