diff options
-rw-r--r-- | cmd/cms/options.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/cms/options.go b/cmd/cms/options.go index e9df7d9..3b6db8c 100644 --- a/cmd/cms/options.go +++ b/cmd/cms/options.go @@ -222,6 +222,7 @@ func createProjInDir(path string) error { networkClone := exec.Command("git", "clone", network, path) networkClone.Stdout = os.Stdout networkClone.Stderr = os.Stderr + err = networkClone.Start() if err != nil { fmt.Println("Network clone failed to start. Try again and make sure you have a network connection.") |