mirror of
https://github.com/SELinuxProject/selinux
synced 2024-12-13 01:24:49 +00:00
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 absolute path
|
||||||
# skip not directory
|
# skip not directory
|
||||||
[ -z "${i}" ] && continue
|
[ -z "${i}" ] && continue
|
||||||
[[ "${i}" =~ "^[[:blank:]]*#" ]] && continue
|
[[ "${i}" =~ ^[[:blank:]]*# ]] && continue
|
||||||
[[ ! "${i}" =~ ^/.* ]] && continue
|
[[ ! "${i}" =~ ^/.* ]] && continue
|
||||||
[[ ! -d "${i}" ]] && continue
|
[[ ! -d "${i}" ]] && continue
|
||||||
exclude_from_relabelling="$exclude_from_relabelling -e $i"
|
exclude_from_relabelling="$exclude_from_relabelling -e $i"
|
||||||
|
Loading…
Reference in New Issue
Block a user