Skip to content

Commit 17922cc

Browse files
committed
csfilter-kfp: fix an over-quoted regex
... which prevented empty lines in `exlude-paths.txt` from being skipped. Resolves: https://issues.redhat.com/browse/OSH-755
1 parent d1e25e8 commit 17922cc

File tree

7 files changed

+2634
-2
lines changed

7 files changed

+2634
-2
lines changed

src/csfilter-kfp

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def construct_path_filter(args):
113113
cmd += ' re=\n'
114114
cmd += ' while read line; do\n'
115115
cmd += ' re="${re}|(${line})"\n'
116-
cmd += ' done < <(grep -Esv "^(#|\\\\$)" "$ep")\n'
116+
cmd += ' done < <(grep -Esv \'^(#|$)\' "$ep")\n'
117117
cmd += ' if test -n "$re"; then\n'
118118
cmd += ' csgrep --mode=json --invert-match --path="${re#|}"\n'
119119
cmd += ' else\n'

tests/csfilter-kfp/0002-stdout.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ path_filter() {
1313
re=
1414
while read line; do
1515
re="${re}|(${line})"
16-
done < <(grep -Esv "^(#|\\$)" "$ep")
16+
done < <(grep -Esv '^(#|$)' "$ep")
1717
if test -n "$re"; then
1818
csgrep --mode=json --invert-match --path="${re#|}"
1919
else

tests/csfilter-kfp/0004-args.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
--kfp-dir "$PROJECT_ROOT/tests/csfilter-kfp/0004-kfp" --project-nvr WALinuxAgent-2.7.0.6-8.el8_8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
2+
WALinuxAgent[^/]*/dcr/.*
3+
# dcr' is a testing pipeline for WALA and it is packaged by an oversight, the code is not used. It was removed in the current upstream so this will be gone with WALA rebase.
4+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
Error: SNYK_CODE_WARNING (CWE-547):
3+
WALinuxAgent-2.7.0.6/azurelinuxagent/common/utils/cryptutil.py:33:1: error[python/HardcodedNonCryptoSecret]: Avoid hardcoding values that are meant to be secret. Found a hardcoded string used in here.
4+
# 31|
5+
# 32|
6+
# 33|-> DECRYPT_SECRET_CMD = "{0} cms -decrypt -inform DER -inkey {1} -in /dev/stdin"
7+
# 34|
8+
# 35|
9+
# DECRYPT_SECRET_CMD is not a hardcoded secret, it is a openssl command template, there's nothing secret in it.
10+

0 commit comments

Comments
 (0)