policycoreutils: fixfiles: syntax error
$ shellcheck fixfiles ... In fixfiles line 94: [[ "${i}" =~ "^[[:blank:]]*#" ]] && continue ^-- SC2076: Don't quote rhs of =~, it'll match literally rather than as a regex. Signed-off-by: Alan Jenkins <alan.christopher.jenkins@gmail.com>
This commit is contained in:
parent
42f91ba291
commit
658800ef3d
|
@ -91,7 +91,7 @@ exclude_dirs_from_relabelling() {
|
|||
# skip not absolute path
|
||||
# skip not directory
|
||||
[ -z "${i}" ] && continue
|
||||
[[ "${i}" =~ "^[[:blank:]]*#" ]] && continue
|
||||
[[ "${i}" =~ ^[[:blank:]]*# ]] && continue
|
||||
[[ ! "${i}" =~ ^/.* ]] && continue
|
||||
[[ ! -d "${i}" ]] && continue
|
||||
exclude_from_relabelling="$exclude_from_relabelling -e $i"
|
||||
|
|
Loading…
Reference in New Issue