mirror of
https://github.com/p4gefau1t/trojan-go.git
synced 2024-04-21 12:21:34 +00:00
12 lines
330 B
Bash
Executable File
12 lines
330 B
Bash
Executable File
#!/bin/bash
|
|
|
|
PACKAGE_NAME="github.com/p4gefau1t/trojan-go"
|
|
VERSION=`git describe`
|
|
COMMIT=`git rev-parse HEAD`
|
|
|
|
VAR_SETTING=""
|
|
VAR_SETTING="$VAR_SETTING -X $PACKAGE_NAME/constant.Version=$VERSION"
|
|
VAR_SETTING="$VAR_SETTING -X $PACKAGE_NAME/constant.Commit=$COMMIT"
|
|
|
|
CGO_ENABLE=0 go build -tags "full" -ldflags="-s -w $VAR_SETTING"
|