From 928d02c259e0c28b5a94cf7b603377bf113cfa21 Mon Sep 17 00:00:00 2001 From: Ajam Date: Tue, 29 Aug 2023 13:23:05 +0545 Subject: [PATCH] Update generate_update_wordlists.yaml --- .github/workflows/generate_update_wordlists.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/generate_update_wordlists.yaml b/.github/workflows/generate_update_wordlists.yaml index f8cd4af..937b14e 100644 --- a/.github/workflows/generate_update_wordlists.yaml +++ b/.github/workflows/generate_update_wordlists.yaml @@ -90,6 +90,14 @@ jobs: find "$GITHUB_WORKSPACE/main" -maxdepth 1 -type d ! -name '.git*' ! -name 'main' ! -name '*Logs*' ! -name '*Misc*' -exec rm -rf {} \; 2>/dev/null continue-on-error: true + - name: Sort Misc + run: | + # Presets + set -x ; set +e + #--------------# + cd "$GITHUB_WORKSPACE/main" + find ./Misc -type f -name '*.txt' -exec sort -u {} -o {} \; + - name: Dos2Unix Everything run: | # Presets