Skip to content

Commit

Permalink
Canonicalize "RocksDB" in make_new_version.sh
Browse files Browse the repository at this point in the history
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
  • Loading branch information
liukai committed Jan 29, 2014
1 parent c9eef78 commit b1874af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build_tools/make_new_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 ..."
Expand Down

0 comments on commit b1874af

Please sign in to comment.