mirror of
https://github.com/danielmiessler/SecLists
synced 2025-12-06 08:53:59 +01:00
fix(cicd): Fixed bad filepaths
This commit is contained in:
parent
2e21f799fc
commit
83c491235d
1 changed files with 3 additions and 3 deletions
|
|
@ -30,9 +30,9 @@ jobs:
|
|||
- name: Generate default-passwords.txt
|
||||
run: |
|
||||
./csvq -N -f CSV 'select Password from `Passwords/Default-Credentials/default-passwords.csv`' > Passwords/Default-Credentials/default-passwords.txt
|
||||
sort -u --output temp.txt default-passwords.txt
|
||||
rm default-passwords.txt
|
||||
mv temp.txt default-passwords.txt
|
||||
sort -u --output Passwords/Default-Credentials/temp.txt Passwords/Default-Credentials/default-passwords.txt
|
||||
rm Passwords/Default-Credentials/default-passwords.txt
|
||||
mv Passwords/Default-Credentials/temp.txt Passwords/Default-Credentials/default-passwords.txt
|
||||
- name: Switching from HTTPS to SSH
|
||||
run: git remote set-url origin git@github.com:${{ github.repository }}.git
|
||||
- name: Check for changes
|
||||
|
|
|
|||
Loading…
Reference in a new issue