mirror of
https://github.com/danielmiessler/SecLists
synced 2026-04-14 19:12:45 +02:00
Update wordlist-validator_verify_entries_for_starting_with_slash.yml
This commit is contained in:
parent
3a6adeb274
commit
f7841cffbc
1 changed files with 2 additions and 1 deletions
|
|
@ -31,7 +31,8 @@ jobs:
|
|||
for modified_file in ${{ steps.changed-files.outputs.all_changed_files }}
|
||||
do
|
||||
echo "[+] Check $modified_file ..."
|
||||
matches=$(grep -Ec "^/[a-zA-Z0-9\._]+" $modified_file)
|
||||
grep -Ec '^/[a-zA-Z0-9\._]+' $modified_file
|
||||
matches=$(grep -Ec '^/[a-zA-Z0-9\._]+' $modified_file)
|
||||
echo "Matches: $matches"
|
||||
if [ $matches -ne 0 ];
|
||||
then
|
||||
|
|
|
|||
Loading…
Reference in a new issue