From 3a85a7679cf302bdd01456070971db6bbbd3cfb0 Mon Sep 17 00:00:00 2001 From: Chris Simpkins Date: Sat, 20 Oct 2018 11:03:51 -0400 Subject: [PATCH] [build-ttf.sh] fix shellcheck SC2155 error --- build-ttf.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build-ttf.sh b/build-ttf.sh index 647045623..258b395dc 100755 --- a/build-ttf.sh +++ b/build-ttf.sh @@ -15,7 +15,8 @@ # set SOURCE_DATE_EPOCH to git commit date/time to support reproducible builds # at any git commit -export SOURCE_DATE_EPOCH=$(git show -s --format=%ct HEAD) +SOURCE_DATE_EPOCH=$(git show -s --format=%ct HEAD) +export SOURCE_DATE_EPOCH # default build tooling definitions TTFAH="$HOME/ttfautohint-build/local/bin/ttfautohint"