From b98beaab1f5738705a241c41f916cacc7e4a4cd4 Mon Sep 17 00:00:00 2001 From: Robert Prehn <3952444+prehnRA@users.noreply.github.com> Date: Fri, 16 Apr 2021 17:08:55 -0500 Subject: [PATCH] chore: Fix args to date command --- 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 bde52737..780b729b 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 +CCYYMMDDhhmm.SS` echo $BUILD_TIMESTAMP touch -t $BUILD_TIMESTAMP apps/**/*.ex apps/**/*.exs config/**/*.ex config/**/*.exs mix.exs