10 lines
142 B
Bash
Executable file
10 lines
142 B
Bash
Executable file
#!/bin/bash
|
|
if [[ $MODE = "test" ]]
|
|
then
|
|
go test ./...
|
|
elif [[ $MODE = "prod" ]]
|
|
then
|
|
go build .
|
|
export GIN_MODE="release"
|
|
./go-mtg-vk
|
|
fi
|