mirror of
https://github.com/wavetermdev/wails.git
synced 2026-08-05 13:53:43 -07:00
fix(cli): fix install error (#2146)
Fixed: https://github.com/wailsapp/wails/issues/2145
This commit is contained in:
@@ -7,6 +7,8 @@ import (
|
||||
"bytes"
|
||||
"os/exec"
|
||||
"strconv"
|
||||
|
||||
"github.com/wailsapp/wails/v2/cmd/wails/internal/logutils"
|
||||
)
|
||||
|
||||
func setParentGID(_ *exec.Cmd) {}
|
||||
@@ -25,7 +27,7 @@ func killProc(cmd *exec.Cmd, devCommand string) {
|
||||
if err.Error() != "exit status 1" {
|
||||
println(stdoutBuffer.String())
|
||||
println(errorBuffer.String())
|
||||
LogRed("Error from '%s': %s", devCommand, err.Error())
|
||||
logutils.LogRed("Error from '%s': %s", devCommand, err.Error())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user