23 lines
494 B
Plaintext
23 lines
494 B
Plaintext
echo "Deleting artifacts from previous builds"
|
|
rm -f template_*.go
|
|
rm -f gen_*.go
|
|
rm -f tmpl_client/template_*.go
|
|
rm -f ./Gosora
|
|
|
|
echo "Building the router generator"
|
|
go build -o RouterGen "./router_gen"
|
|
echo "Running the router generator"
|
|
./RouterGen
|
|
|
|
echo "Building the query generator"
|
|
go build -o QueryGen "./cmd/query_gen"
|
|
echo "Running the query generator"
|
|
./QueryGen
|
|
|
|
echo "Building Gosora"
|
|
go generate
|
|
go build -o Gosora
|
|
|
|
echo "Building the installer"
|
|
go build -o Installer "./install"
|