From 4ced6844726de865d805e02f913efdc6b9da70c5 Mon Sep 17 00:00:00 2001 From: Robert Prehn <3952444+prehnRA@users.noreply.github.com> Date: Fri, 16 Apr 2021 17:16:14 -0500 Subject: [PATCH] chore: Make another attempt at fixing the date command args --- script/ci-set-timestamps | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/ci-set-timestamps b/script/ci-set-timestamps index 780b729b..56a0abd3 100755 --- a/script/ci-set-timestamps +++ b/script/ci-set-timestamps @@ -1,6 +1,6 @@ #!/bin/sh -BUILD_TIMESTAMP=`date -d $CI_COMMIT_TIMESTAMP +CCYYMMDDhhmm.SS` +BUILD_TIMESTAMP=`date -d $CI_COMMIT_TIMESTAMP +%Y%m%d%H%M.%S` echo $BUILD_TIMESTAMP touch -t $BUILD_TIMESTAMP apps/**/*.ex apps/**/*.exs config/**/*.ex config/**/*.exs mix.exs