mirror of
https://github.com/ultrasn0w/huso.git
synced 2025-12-13 08:49:53 +01:00
5 lines
167 B
Bash
Executable File
5 lines
167 B
Bash
Executable File
#!/bin/bash
|
|
date=$(date '+%Y-%m-%dT%H:%M:%S')
|
|
commit=$(git log -1 --pretty=format:'%h %B')
|
|
go build -ldflags "-X 'main.buildTime=$date' -X 'main.buildCommit=$commit'"
|