You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
324 B
19 lines
324 B
#!/usr/bin/env bash
|
|
|
|
CONST_FILE=build-constants.go
|
|
|
|
cat > $CONST_FILE <<EOF
|
|
/*
|
|
* ** DO NOT EDIT THIS FILE. THIS FILE IS AUTO GENERATED BY RUNNING MAKE **
|
|
*/
|
|
|
|
package main
|
|
|
|
const (
|
|
gitCommitHash = "__GIT_COMMIT_HASH__"
|
|
)
|
|
EOF
|
|
|
|
commit_id=$(git log --format="%H" -n 1)
|
|
sed -i "s/__GIT_COMMIT_HASH__/$commit_id/" $CONST_FILE
|
|
|
|
|