diff mbox

[xfstests-bld] gce-do-setup: fix check for unset variables

Message ID 1475256359-122421-1-git-send-email-ebiggers@google.com (mailing list archive)
State New, archived
Headers show

Commit Message

Eric Biggers Sept. 30, 2016, 5:25 p.m. UTC
Signed-off-by: Eric Biggers <ebiggers@google.com>
---
 kvm-xfstests/util/gce-do-setup | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Theodore Ts'o Sept. 30, 2016, 10:22 p.m. UTC | #1
On Fri, Sep 30, 2016 at 10:25:59AM -0700, Eric Biggers wrote:
> Signed-off-by: Eric Biggers <ebiggers@google.com>

Applied, thanks.

				- Ted
--
To unsubscribe from this list: send the line "unsubscribe fstests" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/kvm-xfstests/util/gce-do-setup b/kvm-xfstests/util/gce-do-setup
index 3fb782c..cd4cd6e 100755
--- a/kvm-xfstests/util/gce-do-setup
+++ b/kvm-xfstests/util/gce-do-setup
@@ -19,8 +19,8 @@  if ! type gcloud >& /dev/null ; then
    exit 1
 fi
 
-if test -z "$GS_BUCKET" -o -z "$GCE_PROJECT" -o -z "GCE_ZONE" \
-	-o -z "GCE_KERNEL"
+if test -z "$GS_BUCKET" -o -z "$GCE_PROJECT" -o -z "$GCE_ZONE" \
+	-o -z "$GCE_KERNEL"
 then
     echo -e "Please make sure the following configuration variables are set in"
     echo -e "~/.config/gce-xfstests or one of the other config files:"