2016-05-19 13:34:17 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2016-07-19 14:20:23 +00:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2016-05-20 08:35:48 +00:00
|
|
|
cd ${GOPATH}/src/github.com/appleboy/gorush
|
2016-05-19 13:34:17 +00:00
|
|
|
sed -i"" -e "s/localhost/redis/g" config/config.yml
|
2016-07-19 14:20:23 +00:00
|
|
|
sed -i"" -e "s/localhost/redis/g" config/config.go
|
|
|
|
sed -i"" -e "s/localhost/redis/g" config/config_test.go
|
2016-05-19 13:34:17 +00:00
|
|
|
sed -i"" -e "s/localhost/redis/g" gorush/status_test.go
|
|
|
|
sed -i"" -e "s/localhost/redis/g" storage/redis/redis_test.go
|
2016-07-20 06:13:30 +00:00
|
|
|
make install
|
|
|
|
make coverage
|
|
|
|
make report
|