From 1d9443a8d302bfaa2c1f7148deb847e79079a8b1 Mon Sep 17 00:00:00 2001 From: Brian Porter Date: Tue, 2 Feb 2016 11:45:49 -0600 Subject: [PATCH] Correct typo in option processing. Made both the -r and -s options unusable. --- codesniffer-run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codesniffer-run b/codesniffer-run index c0038e8..df18446 100755 --- a/codesniffer-run +++ b/codesniffer-run @@ -62,7 +62,7 @@ SUPPRESS_WARNINGS="" # Process command line options. -while getopts ":fhnrs:x" opt; do +while getopts ":fhnr:sx" opt; do case $opt in f) SAVE_REPORTS=0 # 0 = true. Save reports to files, not print to screen.