2016-05-19 13:34:17 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2016-07-19 14:20:23 +00:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
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-30 15:02:43 +00:00
|
|
|
|
|
|
|
echo "install package and testing code coverage."
|
2016-12-07 09:08:38 +00:00
|
|
|
make dep_install && coverage all
|