diff options
author | Dr. David von Oheimb <David.von.Oheimb@siemens.com> | 2020-06-10 14:15:28 +0200 |
---|---|---|
committer | Dr. David von Oheimb <David.von.Oheimb@siemens.com> | 2020-07-05 11:29:43 +0200 |
commit | 036cbb6bbf30955abdcffaf6e52cd926d8d8ee75 (patch) | |
tree | 1929b9d33c7041858cbbed980f8c981d8eb77c3c /dev/release-aux | |
parent | util/markdownlint.rb: Add two rule exceptions: MD023 and MD026 (diff) | |
download | openssl-036cbb6bbf30955abdcffaf6e52cd926d8d8ee75.tar.xz openssl-036cbb6bbf30955abdcffaf6e52cd926d8d8ee75.zip |
Rename NOTES*, README*, VERSION, HACKING, LICENSE to .md or .txt
Reviewed-by: Tim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12109)
Diffstat (limited to 'dev/release-aux')
-rw-r--r-- | dev/release-aux/release-version-fn.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev/release-aux/release-version-fn.sh b/dev/release-aux/release-version-fn.sh index f0ac69fa6e..e9e1ac3850 100644 --- a/dev/release-aux/release-version-fn.sh +++ b/dev/release-aux/release-version-fn.sh @@ -36,7 +36,7 @@ # OpenSSL source directory as value. get_version () { - eval $(git cat-file blob HEAD:VERSION) + eval $(git cat-file blob HEAD:VERSION.dat) VERSION="$MAJOR.$MINOR.$PATCH" SERIES="$MAJOR.$MINOR" TYPE=$( echo "$PRE_RELEASE_TAG" \ @@ -102,7 +102,7 @@ set_version () { PRE_RELEASE_TAG="$PRE_LABEL$PRE_NUM" ;; esac - cat > "$SOURCEDIR/VERSION" <<EOF + cat > "$SOURCEDIR/VERSION.dat" <<EOF MAJOR=$MAJOR MINOR=$MINOR PATCH=$PATCH |