Skip to content

Commit

Permalink
Remove hard-coded file path
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-tchad committed Dec 23, 2024
1 parent a4969e6 commit f16a84b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/labkey/test/stress/HarConverter.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public HarConverter(String inputParam)

public static void main(String[] args) throws IOException
{
final String inputParam = "/Users/treychadick/Downloads/dashboard.har";// args.length == 0 ? "-" : args[0];
final String inputParam = args.length == 0 ? "-" : args[0];
final String outputFileName = args.length < 2
? (inputParam.length() > 1 ? inputParam.replaceFirst("(.har)?$", ".xml") : "har.xml")
: args[1];
Expand Down

0 comments on commit f16a84b

Please sign in to comment.