Skip to content

Commit

Permalink
build issue fixing, #195
Browse files Browse the repository at this point in the history
  • Loading branch information
Intelligent2013 committed May 11, 2024
1 parent 08093b5 commit 3e45b5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/metanorma/stepmod2mn.java
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@ private static void runoptions(String[] args) throws ParseException {
String collectionOutputPath = argOutputPath;
if (isStandaloneXML || isDocumentsGenerationMode) {
// get parent folder
collectionOutputPath = new File(argOutputPath).getParent().toString();
collectionOutputPath = new File(argOutputPath).getParent();
}
if (collectionOutputPath == null || collectionOutputPath.isEmpty()) {
collectionOutputPath = inputFolder;
Expand Down

0 comments on commit 3e45b5c

Please sign in to comment.