Skip to content

Commit

Permalink
Script list should now be sorted
Browse files Browse the repository at this point in the history
  • Loading branch information
on committed Aug 19, 2024
1 parent e8f27b9 commit ad5d972
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generate-readme.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
$UserScripts = "."

# Get all .user.js files in the specified directory
$userJsFiles = Get-ChildItem -Path $UserScripts -Filter *.user.js
$userJsFiles = Get-ChildItem -Path $UserScripts -Filter "*.user.js" | Sort-Object Name

$regEx = [regex]'\/\/\s+@(\w+)\s+(.+)'

Expand Down

0 comments on commit ad5d972

Please sign in to comment.