From b7e3ee5221a1c42b535cb214da155a3e283e5206 Mon Sep 17 00:00:00 2001 From: Benji Date: Sun, 24 Nov 2013 17:27:36 -0800 Subject: [PATCH] Fixes the examples for using VERBOSE and VVERBOSE The example for the VERBOSE and VVERBOSE options would throw a 'command not found' error when attempting to use it in the same manner as it was originally documented. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 8b8bb53..4d0b5b7 100644 --- a/README.md +++ b/README.md @@ -210,8 +210,8 @@ Setting `VERBOSE` will print basic debugging information and `VVERBOSE` will print detailed information. ```sh -$ VERBOSE QUEUE=file_serve bin/resque -$ VVERBOSE QUEUE=file_serve bin/resque +$ VERBOSE=1 QUEUE=file_serve bin/resque +$ VVERBOSE=1 QUEUE=file_serve bin/resque ``` ### Priorities and Queue Lists ###