Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge devel into master #117

Merged
merged 8 commits into from
Apr 2, 2024
Next Next commit
Added fix for permissions probe for functions in env
  • Loading branch information
HavrilaJ committed Feb 14, 2024
commit 0fb8ed579e3d3fc3a21573b7bb04f4b47ce3d147
2 changes: 1 addition & 1 deletion src/WN-probes/Permissions
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ function print_summary_metric_results () {
}

start_time=`date -u +%s`
envs=`env | grep = | cut -d= -f1`
envs=`env | grep -v "^\s" | grep -v "{" | grep -v "}" | grep -v "()" | grep = | cut -d= -f1`
total_errors=0
total_warnings=0
declare -a checked_dirs # Array containing all checked directories
Expand Down