Tasks/install.sh

10 lines
221 B
Bash
Raw Normal View History

2016-08-30 23:34:59 +08:00
echo "changing directory to Tasks"
cd $GOPATH/src/github.com/thewhitetulip/Tasks
echo "creating table"
cat schema.sql | sqlite3 tasks.db
echo "building the go binary"
go build -o Tasks
echo "starting the binary"
./Tasks