Skip to content

Commit

Permalink
fix nim-lang#14275 querySetting(nimcacheDir) works even if implicitly…
Browse files Browse the repository at this point in the history
… set (nim-lang#14277)
  • Loading branch information
timotheecour authored and EchoPouet committed Jun 13, 2020
1 parent 306f10d commit 87bcb4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/vmops.nim
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ when defined(nimHasInvariant):
of arguments: result = conf.arguments
of outFile: result = conf.outFile.string
of outDir: result = conf.outDir.string
of nimcacheDir: result = conf.nimcacheDir.string
of nimcacheDir: result = conf.getNimcacheDir().string
of projectName: result = conf.projectName
of projectPath: result = conf.projectPath.string
of projectFull: result = conf.projectFull.string
Expand Down

0 comments on commit 87bcb4b

Please sign in to comment.