Skip to content

Commit

Permalink
fix(action): Pass proper flag for permissive
Browse files Browse the repository at this point in the history
  • Loading branch information
EyeCantCU committed Dec 20, 2023
1 parent ab9ea0e commit fd480d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rpmlint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if [[ -n "${PROFILE}" ]]; then ARGUMENTS+=" -T "; fi
if [[ -n "${IGNORE_UNUSED_RPMLINTRC}" ]]; then ARGUMENTS+=" --ignore-unused-rpmlintrc "; fi
if [[ -n "${CHECKS}" ]]; then ARGUMENTS+=" --checks ${CHECKS} "; fi
if [[ -n "${STRICT}" ]]; then ARGUMENTS+=" -s "; fi
if [[ -n "${PERMISSIVE}" ]]; then ARGUMENTS+=" -p "; fi
if [[ -n "${PERMISSIVE}" ]]; then ARGUMENTS+=" -P "; fi

# Format arguments
ARGUMENTS=$(echo "$ARGUMENTS" | xargs)
Expand Down

0 comments on commit fd480d3

Please sign in to comment.