From 34526def0d88583b6bcbf299e77c89f7a0094891 Mon Sep 17 00:00:00 2001 From: "bradnelson@google.com" Date: Thu, 13 Aug 2009 18:43:13 +0000 Subject: [PATCH] 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 --- hammer | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hammer b/hammer index 129c68d57e..affd06457b 100755 --- a/hammer +++ b/hammer @@ -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