File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 82
82
run : |
83
83
echo "Building for GOOS=${GOOS} GOARCH=${GOARCH}"
84
84
go build -o service-worker-gateway-${{ matrix.arch }}${{ matrix.output_suffix }} main.go
85
+ chmod +x service-worker-gateway-${{ matrix.arch }}${{ matrix.output_suffix }}
85
86
86
87
# ###
87
88
# # Windows signing -- disabled because we don't have a valid cert
Original file line number Diff line number Diff line change @@ -88,7 +88,8 @@ func main() {
88
88
mux .Handle ("/" , distHandler )
89
89
90
90
addr := ":3000"
91
- log .Printf ("Service‑worker gateway listening on %s" , addr )
91
+ log .Printf ("Service Worker Gateway listening on %s" , addr )
92
+ log .Printf ("Open http://gateway.localhost%s in your browser" , addr )
92
93
if err := http .ListenAndServe (addr , mux ); err != nil {
93
94
log .Fatalf ("server error: %v" , err )
94
95
}
You can’t perform that action at this time.
0 commit comments