Skip to content

Commit

Permalink
Remove Date Leading 0
Browse files Browse the repository at this point in the history
  • Loading branch information
maxtyson123 committed Dec 16, 2023
1 parent 8a5b2d1 commit 1bbfa83
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions toolchain/version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ MAJOR_VERSION="0"
MINOR_VERSION="1"
VERSION_NAME="Development Version"
BUILD_NUMBER=$(cat .buildCount)
BUILD_YEAR="$(date +'%Y')"
BUILD_MONTH="$(date +'%m')"
BUILD_DAY="$(date +'%d')"
BUILD_HOUR="$(date +'%H')"
BUILD_MINUTE="$(date +'%M')"
BUILD_SECOND="$(date +'%S')"
BUILD_YEAR="$(date +'%-Y')"
BUILD_MONTH="$(date +'%-m')"
BUILD_DAY="$(date +'%-d')"
BUILD_HOUR="$(date +'%-H')"
BUILD_MINUTE="$(date +'%-M')"
BUILD_SECOND="$(date +'%-S')"
GIT_REVISION="$(git rev-parse --short HEAD)"
GIT_BRANCH="$(git rev-parse --abbrev-ref HEAD)"
GIT_COMMIT="$(git rev-list --count HEAD)"
Expand Down

0 comments on commit 1bbfa83

Please sign in to comment.