From 21d36877bbd9d950be321815edc044bc4dac5fe5 Mon Sep 17 00:00:00 2001 From: Max Murphy Date: Wed, 15 Nov 2023 11:06:35 +0100 Subject: [PATCH] simplify --- scripts/import-candid | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/import-candid b/scripts/import-candid index 96ce2659..817e1538 100755 --- a/scripts/import-candid +++ b/scripts/import-candid @@ -51,7 +51,7 @@ test -n "${IC_DIR:-}" || { exit 1 } >&2 IC_COMMIT="$(cd "${IC_DIR}" && git rev-parse --short HEAD)" -IC_DATE="$(cd "${IC_DIR}" && git show -s --format=%ci | cut -f1 -d' ')" +IC_DATE="$(cd "${IC_DIR}" && git show -s --format=%as)" IC_TAGS="$(cd "${IC_DIR}" && git tag --points-at HEAD | tr "\n" " ")" THIS_SCRIPT_NAME="$(basename "$0")"