8 lines
65 B
Bash
8 lines
65 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -x
|
||
|
set -e
|
||
|
|
||
|
go build -o tw ./twitter
|
||
|
chmod +x tw
|