Skip to content

Commit

Permalink
Include '.exe' file suffix by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
stephen-fox committed Apr 26, 2020
1 parent 4d03451 commit 8a33014
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ arguments and an explanation of their effects:
-d string
The directory to search for .NET files
-e string
Comma separated list of file extensions to search for (default ".dll")
Comma separated list of file extensions to search for (default ".dll,.exe")
-ilspy string
The 'ilspycmd' binary to use (default "ilspycmd")
-no-ilspy-errors
Expand Down
2 changes: 1 addition & 1 deletion cmd/finley/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var (

func main() {
targetDirPath := flag.String("d", "", "The directory to search for .NET files")
fileExtsCsv := flag.String("e", ".dll", "Comma separated list of file extensions to search for")
fileExtsCsv := flag.String("e", ".dll,.exe", "Comma separated list of file extensions to search for")
outputDirPath := flag.String("o", "", "The output directory. Creates a new directory if not specified")
respectFileCase := flag.Bool("respect-file-case", false, "Respect filenames' case when matching their extensions")
noIlspyErrors := flag.Bool("no-ilspy-errors", false, "Exit if ILSpy fails to decompile a file")
Expand Down

0 comments on commit 8a33014

Please sign in to comment.