Skip to content

Commit

Permalink
Fixed wrong variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
Aklakan committed Feb 23, 2024
1 parent f802abe commit 0dd361e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ public static int sparqlIntegrate(CmdSparqlIntegrateMain cmd) throws Exception {
outFile = Paths.get(outFilename).toAbsolutePath();

Path outDir = outFile.getParent();
if (cmd.outMkDirs && outDir != null && !Files.exists(outFile)) {
if (cmd.outMkDirs && outDir != null && !Files.exists(outDir)) {
Files.createDirectories(outDir);
}

Expand Down

0 comments on commit 0dd361e

Please sign in to comment.