Skip to content

Commit

Permalink
Update generate_update_wordlists.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Azathothas authored Aug 29, 2023
1 parent ead1100 commit 45aefb1
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/generate_update_wordlists.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
set -x ; set +e
#--------------#
# Del all Dirs
find "$GITHUB_WORKSPACE/main" -maxdepth 1 -type d ! -name '.git*' -exec rm -rf {} \; 2>/dev/null
find "$GITHUB_WORKSPACE/main" -maxdepth 1 -type d ! -name '.git*' ! -name '*Logs*' -exec rm -rf {} \; 2>/dev/null
# Create Output Dir
mkdir -p "$GITHUB_WORKSPACE/main/Logs"
continue-on-error: true
Expand All @@ -76,9 +76,21 @@ jobs:

- name: Dos2Unix Everything
run: |
# Presets
set -x ; set +e
#--------------#
cd "$GITHUB_WORKSPACE/main"
find . -type f -name '*.txt' -exec dos2unix {} \;
continue-on-error: true

- name: Clean Clone Repos
run: |
# Presets
set -x ; set +e
#--------------#
# Del all Dirs
find "$GITHUB_WORKSPACE/main" -maxdepth 1 -type d ! -name '.git*' ! -name '*Logs*' -exec rm -rf {} \; 2>/dev/null
continue-on-error: true

- name: Update README.md
run: |
Expand Down

0 comments on commit 45aefb1

Please sign in to comment.