Canonicalize "RocksDB" in make_new_version.sh

Summary: Change all occurrences of "rocksdb" to its canonical form "RocksDB".

Test Plan: N/A

Reviewers: igor

Reviewed By: igor

CC: leveldb

Differential Revision: https://reviews.facebook.net/D15549
main
kailiu 11 years ago
parent c9eef784b7
commit b1874af8bc
  1. 6
      build_tools/make_new_version.sh

@ -16,7 +16,7 @@ function title() {
echo -e "\033[1;32m$*\033[0m"
}
usage="Create new rocksdb version and prepare it for the release process\n"
usage="Create new RocksDB version and prepare it for the release process\n"
usage+="USAGE: ./make_new_version.sh <version>"
# -- Pre-check
@ -33,8 +33,8 @@ if [ $GIT_BRANCH != "master" ]; then
fi
title "Adding new tag for this release ..."
$TAG="$ROCKSDB_VERSION.fb"
$GIT tag -a "$TAG" -m "Rocksdb $ROCKSDB_VERSION"
TAG="$ROCKSDB_VERSION.fb"
$GIT tag -a "$TAG" -m "RocksDB $ROCKSDB_VERSION"
# Setting up the proxy for remote repo access
title "Pushing new tag to remote repo ..."

Loading…
Cancel
Save