We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 465ff2d commit 3af74a1Copy full SHA for 3af74a1
1 file changed
scripts/list_changed_advisories.py
@@ -7,7 +7,9 @@
7
import re
8
import subprocess
9
10
-output = subprocess.check_output(['git', 'status', '--porcelain'], text=True)
+output = subprocess.check_output(
11
+ ['git', 'status', '--untracked-files', '--porcelain'], text=True
12
+)
13
14
for line in output.split('\n'):
15
match = re.match(r'.. advisories/\w+/(DRUPAL-.*)', line)
0 commit comments