From 7ec2fa2d3ec82f55d861ca54c484cdf118b8fd17 Mon Sep 17 00:00:00 2001 From: Vidar Holen Date: Sat, 28 Apr 2018 11:35:08 -0700 Subject: [PATCH] Remove 'nice' from list of non-reading commands (fixes #1169) --- src/ShellCheck/Data.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ShellCheck/Data.hs b/src/ShellCheck/Data.hs index 7875700..1fd42b8 100644 --- a/src/ShellCheck/Data.hs +++ b/src/ShellCheck/Data.hs @@ -81,7 +81,7 @@ nonReadingCommands = [ "alias", "basename", "bg", "cal", "cd", "chgrp", "chmod", "chown", "cp", "du", "echo", "export", "false", "fg", "fuser", "getconf", "getopt", "getopts", "ipcrm", "ipcs", "jobs", "kill", "ln", "ls", - "locale", "mv", "nice", "printf", "ps", "pwd", "renice", "rm", "rmdir", + "locale", "mv", "printf", "ps", "pwd", "renice", "rm", "rmdir", "set", "sleep", "touch", "trap", "true", "ulimit", "unalias", "uname" ]