create_build_info_env
This script will create a key=value
file at the given path containing build and source control information.
The given path can either be relative to the base directory (-d
) or an absolute path—intermediate directories will not be created; if not given .env
will be used.
The following parameters are optional:
d
-
the base directory (
$PWD
if not given) e
-
add
export
in front of each key/value pair; also changes the default file name to.envrc
f
-
overwrite the existing file
p
-
a prefix for the keys
The value of
|
The value of The following will give you the timestamp of the HEAD commit:
|
This script will add source control information if the base directory (
The value of |
Usage
$ scripts/web/create_build_info_env.sh
$ scripts/web/create_build_info_env.sh -e
$ scripts/web/create_build_info_js.sh -f /tmp/.env.local
$ scripts/web/create_build_info_js.sh -d ~/git_repo
$ scripts/web/create_build_info_js.sh -p EX_
$ scripts/web/create_build_info_env.sh
⇓
# WARNING: will be overwritten by the `scripts/web/create_build_info_env.sh` script
BUILD_ID="1747733549"
BUILD_TIME="2025-05-20T09:32:29Z"
GIT_BRANCH="main"
GIT_COMMIT_ID="a56244680c24bd8224a0121914720df1c101b93b"
GIT_COMMIT_TIME="2025-05-20T09:11:25Z"
$ scripts/web/create_build_info_env.sh -e
⇓
# WARNING: will be overwritten by the `scripts/web/create_build_info_env.sh` script
export BUILD_ID="1747733591"
export BUILD_TIME="2025-05-20T09:33:11Z"
export GIT_BRANCH="main"
export GIT_COMMIT_ID="a56244680c24bd8224a0121914720df1c101b93b-next"
export GIT_COMMIT_TIME="2025-05-20T09:11:25Z"
$ scripts/web/create_build_info_env.sh -p SD_
⇓
# WARNING: will be overwritten by the `scripts/web/create_build_info_env.sh` script
SD_BUILD_ID="1747733611"
SD_BUILD_TIME="2025-05-20T09:33:31Z"
SD_GIT_BRANCH="main"
SD_GIT_COMMIT_ID="a56244680c24bd8224a0121914720df1c101b93b-next"
SD_GIT_COMMIT_TIME="2025-05-20T09:11:25Z"
$ SOURCE_DATE_EPOCH=0 scripts/web/create_build_info_env.sh
⇓
# WARNING: will be overwritten by the `scripts/web/create_build_info_env.sh` script
BUILD_ID="1747733640"
BUILD_TIME="1970-01-01T00:00:00Z"
GIT_BRANCH="main"
GIT_COMMIT_ID="a56244680c24bd8224a0121914720df1c101b93b-next"
GIT_COMMIT_TIME="2025-05-20T09:11:25Z"