8 lines
245 B
Bash
8 lines
245 B
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
cd /go/src/github.com/appleboy/gorush
|
||
|
sed -i"" -e "s/localhost/redis/g" config/config.yml
|
||
|
sed -i"" -e "s/localhost/redis/g" gorush/status_test.go
|
||
|
sed -i"" -e "s/localhost/redis/g" storage/redis/redis_test.go
|
||
|
make bundle && make test
|