Skip to content
Snippets Groups Projects
Verified Commit 2f207fda authored by David Runge's avatar David Runge :chipmunk:
Browse files

Merge remote-tracking branch 'nl6720/date'

* nl6720/date:
  mkarchiso: replace external date command with printf
parents a37c320a f8862c26
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,8 @@ set -e -u
# Control the environment
umask 0022
export LC_ALL="C"
export SOURCE_DATE_EPOCH="${SOURCE_DATE_EPOCH:-"$(date +%s)"}"
[[ -v SOURCE_DATE_EPOCH ]] || printf -v SOURCE_DATE_EPOCH '%(%s)T' -1
export SOURCE_DATE_EPOCH
# Set application name from the script's file name
app_name="${0##*/}"
......@@ -113,7 +114,7 @@ ENDUSAGETEXT
# Shows configuration options.
_show_config() {
local build_date
build_date="$(date --utc --iso-8601=seconds -d "@${SOURCE_DATE_EPOCH}")"
printf -v build_date '%(%FT%R%z)T' "${SOURCE_DATE_EPOCH}"
_msg_info "${app_name} configuration settings"
_msg_info " Architecture: ${arch}"
_msg_info " Working directory: ${work_dir}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment