summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/main.go b/main.go
index e3eb446f6..bb2e32205 100644
--- a/main.go
+++ b/main.go
@@ -60,12 +60,12 @@ func main() {
var command = Msg_START // TODO use proto3
PubMsg("start", &Msg{
- Command: &command,
- StartCwd: &cwd,
+ Command: command,
+ StartCwd: cwd,
StartArgv: args,
- StartDebugFlag: flagDebug,
- StartMainJs: &main_js,
- StartMainMap: &main_map,
+ StartDebugFlag: *flagDebug,
+ StartMainJs: main_js,
+ StartMainMap: main_map,
})
DispatchLoop()