diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-05 22:34:44 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-05 22:34:44 +0000 |
commit | df9e8cd83f062e899b2952a6fa5a47b28cd8169b (patch) | |
tree | 024b0c9dec48ec444510c18f0a5ba9cd1c07dcb1 /tools | |
parent | 7abe40d5e82e695c4c5a6379c5e9d1ebe090bd76 (diff) | |
download | chromium_src-df9e8cd83f062e899b2952a6fa5a47b28cd8169b.zip chromium_src-df9e8cd83f062e899b2952a6fa5a47b28cd8169b.tar.gz chromium_src-df9e8cd83f062e899b2952a6fa5a47b28cd8169b.tar.bz2 |
Remove bashisms from waterfall.sh
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3054045
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55144 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/valgrind/waterfall.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/valgrind/waterfall.sh b/tools/valgrind/waterfall.sh index 55ec562..4b04efa 100755 --- a/tools/valgrind/waterfall.sh +++ b/tools/valgrind/waterfall.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh # Copyright (c) 2010 The Chromium Authors. All rights reserved. # Use of this source code is governed by a BSD-style license that can be @@ -67,10 +67,10 @@ match_suppressions() { python "$THISDIR/test_suppressions.py" "$LOGS_DIR/report_"* } -if [ "$1" == "fetch" ] +if [ "$1" = "fetch" ] then fetch_logs -elif [ "$1" == "match" ] +elif [ "$1" = "match" ] then match_suppressions else |