2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-08-31 06:16:03 +00:00

Mark variables as dummy in a way that shellcheck 0.7.0 supports

The "_" prefix is only supported in shellcheck > 0.7.2.
This commit is contained in:
intrigeri
2022-02-13 08:52:53 +00:00
parent 529d386775
commit 56dd267a24
2 changed files with 2 additions and 2 deletions

View File

@@ -217,7 +217,7 @@ apparmor_start() {
fi
# if there is anything in the profiles file don't load
if ! read -r _line < "$SFS_MOUNTPOINT/profiles"; then
if ! read -r _ < "$SFS_MOUNTPOINT/profiles"; then
parse_profiles load
else
aa_log_skipped_msg ": already loaded with profiles."