File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ import (
16
16
)
17
17
18
18
type config struct {
19
- socketPath string
19
+ socketPath string
20
20
powershellPath string
21
- foreground bool
22
- verbose bool
23
- stop bool
24
- logFile string
25
- version bool
21
+ foreground bool
22
+ verbose bool
23
+ stop bool
24
+ logFile string
25
+ version bool
26
26
}
27
27
28
28
var version = "(development version)"
@@ -77,7 +77,7 @@ func newConfig() *config {
77
77
return c
78
78
}
79
79
80
- func (c * config ) start () ( context.Context ) {
80
+ func (c * config ) start () context.Context {
81
81
if c .version {
82
82
fmt .Printf ("wsl2-ssh-agent %s\n " , version )
83
83
os .Exit (0 )
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import (
12
12
)
13
13
14
14
type server struct {
15
- listener net.Listener
15
+ listener net.Listener
16
16
powershellPath string
17
17
}
18
18
You can’t perform that action at this time.
0 commit comments