Skip to content

Commit

Permalink
Issue checkstyle#11637: Resolve shellcheck SC2269
Browse files Browse the repository at this point in the history
  • Loading branch information
stoyanK7 authored and romani committed Jul 27, 2022
1 parent 9c6ce2a commit 9641a07
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions .ci/validation.sh
Expand Up @@ -53,9 +53,7 @@ check-missing-pitests)
for item in "${list[@]}"
do
item=${item//\./\/}
if [[ $item == */\* ]] ; then
item=$item
else
if [[ $item != */\* ]] ; then
if [[ $item != *\* ]] ; then
item="$item.java"
else
Expand Down
1 change: 0 additions & 1 deletion .shellcheckrc
Expand Up @@ -26,7 +26,6 @@ disable=SC2088 # (warning): Tilde does not expand in quotes. Use $HOME.
disable=SC2005 # (style): Useless echo? Instead of 'echo $(cmd)', just use 'cmd'.
disable=SC2015 # (info): Note that A && B || C is not if-then-else. C may run when A is true.
disable=SC2026 # (info): This word is outside of quotes.
disable=SC2269 # (info): This variable is assigned to itself, so the assignment does nothing.
disable=SC2230 # which is non-standard. Use builtin 'command -v' instead.
disable=SC2153 # Possible misspelling: LINKED_ISSUES may not be assigned, but LINKED_ISSUE is.
disable=SC1004 # This backslash+linefeed is literal.

0 comments on commit 9641a07

Please sign in to comment.