You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/limactl/start.go
+40-2Lines changed: 40 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -3,9 +3,13 @@ package main
3
3
import (
4
4
"errors"
5
5
"fmt"
6
+
"io"
6
7
"io/ioutil"
8
+
"net/http"
9
+
"net/url"
7
10
"os"
8
11
"os/exec"
12
+
"path"
9
13
"path/filepath"
10
14
"strings"
11
15
@@ -25,7 +29,7 @@ import (
25
29
26
30
funcnewStartCommand() *cobra.Command {
27
31
varstartCommand=&cobra.Command{
28
-
Use: "start NAME|FILE.yaml",
32
+
Use: "start NAME|FILE.yaml|URL",
29
33
Short: fmt.Sprintf("Start an instance of Lima. If the instance does not exist, open an editor for creating new one, with name %q", DefaultInstanceName),
0 commit comments