diff options
author | Richard Levitte <richard@levitte.org> | 2020-07-16 15:08:30 +0200 |
---|---|---|
committer | Richard Levitte <richard@levitte.org> | 2020-07-16 15:08:30 +0200 |
commit | b013cf90000aec515af17ee9bb3fe37ca0891499 (patch) | |
tree | 64511dc35e43ae38ec1240b96355219f42be1454 /util/mktar.sh | |
parent | Update copyright year (diff) | |
download | openssl-b013cf90000aec515af17ee9bb3fe37ca0891499.tar.xz openssl-b013cf90000aec515af17ee9bb3fe37ca0891499.zip |
util/mktar.pl: Change 'VERSION' to 'VERSION.dat'
This was forgotten when that file changed name, and that unfortunately
disrupts releases.
Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com>
(Merged from https://github.com/openssl/openssl/pull/12464)
Diffstat (limited to 'util/mktar.sh')
-rwxr-xr-x | util/mktar.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/mktar.sh b/util/mktar.sh index 04b29e2e3a..ec47578f34 100755 --- a/util/mktar.sh +++ b/util/mktar.sh @@ -9,7 +9,7 @@ HERE=`dirname $0` # Get all version data as shell variables -. $HERE/../VERSION +. $HERE/../VERSION.dat if [ -n "$PRE_RELEASE_TAG" ]; then PRE_RELEASE_TAG=-$PRE_RELEASE_TAG; fi version=$MAJOR.$MINOR.$PATCH$PRE_RELEASE_TAG$BUILD_METADATA |