Skip to content

Commit

Permalink
[infra] Ignore debian/rules permission checking (Samsung#6824)
Browse files Browse the repository at this point in the history
This commit ignores debian/rules permission checking.

Signed-off-by: seongwoo <[email protected]>
  • Loading branch information
mhs4670go authored May 16, 2021
1 parent 5a6e6ed commit 6f86069
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion infra/command/format
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ function check_permission() {
FILES_TO_CHECK_PERMISSION=()
for f in ${FILES_TO_CHECK[@]}; do
# Manually ignore permission checking
if [[ ${f} == !(nnas|nnfw|nncc|*.sh|*.py|*/gradlew) ]] || [[ ${f} == tests/nnapi/specs/**/*.py ]]; then
if [[ ${f} == !(nnas|nnfw|nncc|*.sh|*.py|*/gradlew|debian/rules) ]] \
|| [[ ${f} == tests/nnapi/specs/**/*.py ]]; then
FILES_TO_CHECK_PERMISSION+=("${f}")
fi
done
Expand Down

0 comments on commit 6f86069

Please sign in to comment.