From bc11728c2e77fda561bd3e76ee89d5de59c37c8b Mon Sep 17 00:00:00 2001 From: Anton Palgunov Date: Thu, 14 May 2020 00:44:10 +0100 Subject: [PATCH] Standard english date for build script --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index a28d539..70993f8 100755 --- a/build.sh +++ b/build.sh @@ -22,7 +22,7 @@ NAME_DMG="${NAME}.app" echo $NAME_DMG create-dmg $NAME_DMG -DATE=`date +"%a, %d %b %Y %H:%M:%S %z"` +DATE=`LC_ALL=en_US.utf8 date +"%a, %d %b %Y %H:%M:%S %z"` BUILD=`/usr/libexec/PlistBuddy -c "Print CFBundleVersion" ${NAME}.app/Contents/Info.plist` VERSION=`/usr/libexec/PlistBuddy -c "Print CFBundleShortVersionString" ${NAME}.app/Contents/Info.plist` MINIMUM=`/usr/libexec/PlistBuddy -c "Print LSMinimumSystemVersion" ${NAME}.app/Contents/Info.plist`