setup.sh 140 B

123456789
  1. #!/bin/bash
  2. sed -i 's|tcp(.*:3306)|tcp('"${DBHOST}"':3306)|g' src/hello/hello.go
  3. fw_depends go
  4. go get ./...
  5. go run src/hello/hello.go &