Merge pull request #87 from harmony-one/lc4pr-pd
[HAR-5]: handle ping/pong messages properlypull/88/head
commit
f34ae3e537
@ -1,6 +1,20 @@ |
|||||||
#!/bin/bash |
#!/bin/bash |
||||||
|
|
||||||
DIRROOT=$(dirname $0) |
DIRROOT=$(dirname $0) |
||||||
|
OS=$(uname -s) |
||||||
|
|
||||||
go test ./... |
go test ./... |
||||||
$DIRROOT/.travis.gofmt.sh |
|
||||||
|
pushd $DIRROOT |
||||||
|
./.travis.gofmt.sh |
||||||
|
|
||||||
|
case $OS in |
||||||
|
Darwin) |
||||||
|
./go_executable_build.sh -o darwin |
||||||
|
;; |
||||||
|
Linux) |
||||||
|
./go_executable_build.sh |
||||||
|
;; |
||||||
|
esac |
||||||
|
|
||||||
|
popd |
||||||
|
Loading…
Reference in new issue