7 lines
284 B
Bash
Executable File
7 lines
284 B
Bash
Executable File
#!/bin/bash
|
|
# it's tricky to do an RFC3339 format in a cross platform way, so we hardcode UTC
|
|
DATE_FORMAT="%Y-%m-%dT%H:%M:%SZ"
|
|
|
|
# we're using this for build date because it's stable across platform builds
|
|
git show --no-show-signature -s --format=%cd --date=format:"$DATE_FORMAT" HEAD
|