Skip to content

Commit

Permalink
Adjust debugging startup to include all files
Browse files Browse the repository at this point in the history
  • Loading branch information
wrdg committed Apr 29, 2024
1 parent 30233a3 commit d64bd61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion KuruExtract/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public static int Main(string[] args)
try
{
#if DEBUG
var result = app.Run(args.Length < 1 ? ["P:\\", "-i", "*.cpp", "-u"] : args);
var result = app.Run(args.Length < 1 ? ["P:\\", "-u"] : args);
#else
var result = app.Run(args.Length < 1 ? ["-h"] : args);
#endif
Expand Down

0 comments on commit d64bd61

Please sign in to comment.