sum7/warehost
sum7
/
warehost
Archived
1
0
Fork 0
This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
warehost/build.sh

11 lines
178 B
Bash
Raw Normal View History

2016-10-11 20:20:12 +02:00
#!/bin/bash
P=$PWD;
cd $GOPATH/src/dev.sum7.eu/sum7/warehost/cmd/warehost;
2016-10-17 11:54:35 +02:00
go install -tags all;
2016-10-11 20:20:12 +02:00
cd $GOPATH/src/dev.sum7.eu/sum7/warehost/cmd/warehost-web;
go install;
cd $P;