From 7211ed4f0e2f01be8ff5c173fd2125006789f68e Mon Sep 17 00:00:00 2001 From: Azareal Date: Thu, 28 May 2020 18:07:13 +1000 Subject: [PATCH] switch the order on these --- pre-run-linux | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pre-run-linux b/pre-run-linux index 1b256ba7..8b2c2e46 100644 --- a/pre-run-linux +++ b/pre-run-linux @@ -25,17 +25,17 @@ go build -tags hookgen -ldflags="-s -w" -o HookGen "./cmd/hook_gen" echo "Running the hook generator" ./HookGen +echo "Building the query generator" +go build -ldflags="-s -w" -o QueryGen "./cmd/query_gen" +echo "Running the query generator" +./QueryGen + echo "Generating the JSON handlers" easyjson -pkg common echo "Building Gosora" go build -ldflags="-s -w" -o Gosora -echo "Building the query generator" -go build -ldflags="-s -w" -o QueryGen "./cmd/query_gen" -echo "Running the query generator" -./QueryGen - echo "Building the templates" ./Gosora -build-templates