Skip to content

Commit

Permalink
Update Duplicate and empty lines removal.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
HotCakeX committed Jan 11, 2024
1 parent a0aaa3e commit 0148968
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/Duplicate and empty lines removal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
- name: Run a one-line script
shell: pwsh
run: |
(Get-Content "Microsoft Domains.txt").Trim() |
ForEach-Object { $_.ToLower().Split() } |
Where-Object { $_.trim() -ne "" } |
Select-Object -Unique | Set-Content "Microsoft Domains.txt"
(Get-Content -Path 'Microsoft Domains.txt').Trim() |
ForEach-Object -Process { $_.ToLower().Split() } |
Where-Object -FilterScript { $_.trim() -ne '' } |
Select-Object -Unique | Set-Content -Path 'Microsoft Domains.txt' -Force
git config --global user.email "spynetgirl@outlook"
git config --global user.name "HotCakeX"
Expand Down

0 comments on commit 0148968

Please sign in to comment.