Commit 34526def authored by bradnelson@google.com's avatar bradnelson@google.com

Fixing == -> = for dash.

BUG=None
TEST=None
TBR=rspangler

Review URL: http://codereview.chromium.org/164496

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@23335 0039d316-1c4b-4281-b951-d872f2087c98
parent 7a9a4470
......@@ -14,7 +14,7 @@ SRC_DIR=`pwd`
while `test ! -d "${SRC_DIR}/site_scons" -o \
-e "${SRC_DIR}/site_scons/site_tools/component_setup.py"`; do
PARENT_DIR="$(dirname ${SRC_DIR})"
if `test "${SRC_DIR}" == "${PARENT_DIR}"`; then
if `test "${SRC_DIR}" = "${PARENT_DIR}"`; then
echo "ERROR: hammer must be run in a directory with site_scons under" >&2
echo " the root of the project tree." >&2
exit 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment