Browse Source

address windows bug with incomplete args[0] paths

master v0.7.1
AJ ONeal 5 years ago
parent
commit
693e61d7d4
  1. 8
      manager/install_windows.go

8
manager/install_windows.go

@ -6,6 +6,7 @@ import (
"io/ioutil"
"log"
"os"
"os/exec"
"path/filepath"
"strings"
@ -288,6 +289,13 @@ func installServiceman(c *service.Service) ([]string, error) {
if nil != err {
return nil, err
}
// Note: self may be the short name, in which case
// we should just use whatever is closest in the path
// exec.LookPath will handle this correctly
self, err = exec.LookPath(self)
if nil != err {
return nil, err
}
bin, err := ioutil.ReadFile(self)
if nil != err {
return nil, err

Loading…
Cancel
Save