diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2018-05-22 14:10:13 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-05-22 14:10:15 -0400 |
commit | d0a8bacab612ae2ecae3525fb7548f1c5e6ed35d (patch) | |
tree | f12982ff0bad14b32f12da0b1417a4111d2676ed /main.go | |
parent | 9ea397861feeefcce9f18947e10aa6cc155ec459 (diff) |
Use proto2 instead of proto3
Travis doesn't support proto3.
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -83,11 +83,11 @@ func main() { out, err := proto.Marshal(&Msg{ Payload: &Msg_Start{ Start: &StartMsg{ - Cwd: cwd, + Cwd: &cwd, Argv: args, - DebugFlag: *flagDebug, - MainJs: main_js, - MainMap: main_map, + DebugFlag: flagDebug, + MainJs: &main_js, + MainMap: &main_map, }, }, }) |