Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
vzex committed May 26, 2016
1 parent 31b1c7b commit 3e07769
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.PHONY: local server remote clean

server:
go build -o run_$@ main.go server.go
go build -ldflags "-s -w" -o run_$@ main.go server.go
remote:
go build -o run_$@ main.go remote.go
go build -ldflags "-s -w" -o run_$@ main.go remote.go
clean:
@rm -f run_*
2 changes: 1 addition & 1 deletion logic_remote/internal/init.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
local m = require "logic/internal/pack"
local m = require "logic_remote/internal/pack"
function handle_cmd(info)
local commond = info.Cmd
local s, ok = cmd(commond)
Expand Down

0 comments on commit 3e07769

Please sign in to comment.