Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/teamcity/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ esac

# Build qdb_rest
cd $1/apps/qdb_rest
go build -x -v -o qdb_rest$SUFFIX
go build -x -v -gcflags=-trimpath=$HOME/go -o qdb_rest$SUFFIX

# Build qdb_rest_service on windows
case $(uname) in
MINGW* )
cd ../qdb_rest_service
go build -x -v -o qdb_rest_service$SUFFIX
go build -x -v -gcflags=-trimpath=c:\Go -o qdb_rest_service$SUFFIX
;;
esac