add node command
This commit is contained in:
parent
c7b6273166
commit
cafa0dcca1
2 changed files with 39 additions and 1 deletions
38
cmd/node.go
Normal file
38
cmd/node.go
Normal file
|
@ -0,0 +1,38 @@
|
|||
package cmd
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"os/exec"
|
||||
"strings"
|
||||
)
|
||||
|
||||
var NodeNotFound = errors.New("nodejs not found")
|
||||
|
||||
func Node(args ...string) (output string, err error) {
|
||||
|
||||
if _, err := Which("node"); err != nil {
|
||||
if errors.Is(err, ErrNotFound) {
|
||||
return "", NodeNotFound
|
||||
} else {
|
||||
return "", err
|
||||
}
|
||||
}
|
||||
|
||||
command := exec.Command("node", args...)
|
||||
|
||||
outputBytes, err := command.Output()
|
||||
if err != nil {
|
||||
var exitErr *exec.ExitError
|
||||
if errors.As(err, &exitErr) {
|
||||
if exitErr.ExitCode() == 1 {
|
||||
return "", ErrNotFound
|
||||
} else {
|
||||
return "", fmt.Errorf("command error: %w", err)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return strings.Trim(string(outputBytes), "\n"), nil
|
||||
|
||||
}
|
|
@ -9,7 +9,7 @@ import (
|
|||
|
||||
var ErrNotFound = errors.New("which: command not found")
|
||||
|
||||
func Which(cmd string) (string, error) {
|
||||
func Which(cmd string) (dir string, err error) {
|
||||
|
||||
command := exec.Command("which", cmd)
|
||||
|
||||
|
|
Loading…
Reference in a new issue