We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c821b8e commit 568c25aCopy full SHA for 568c25a
cmd/start.go
@@ -8,6 +8,7 @@ import (
8
"os/exec"
9
"path/filepath"
10
"strconv"
11
+ "strings"
12
13
log "github.com/sirupsen/logrus"
14
"github.com/spf13/cobra"
@@ -38,7 +39,7 @@ func start() {
38
39
childArgs := append([]string{"server"}, os.Args[2:]...)
40
hasForceBinDir := false
41
for _, arg := range childArgs {
- if arg == "--force-bin-dir" {
42
+ if arg == "--force-bin-dir" || strings.HasPrefix(arg, "--force-bin-dir=") {
43
hasForceBinDir = true
44
break
45
}
0 commit comments