12 lines
121 B
Bash
Executable File
12 lines
121 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
. script/bootstrap
|
|
|
|
mkdir -p bin
|
|
bindir="$PWD"/bin
|
|
|
|
cd .gopath/src/github.com/github/gh-ost
|
|
go "$@"
|