We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87a06e6 commit b2efaa8Copy full SHA for b2efaa8
src/packages.nim
@@ -194,8 +194,8 @@ proc buildPackages*(
194
195
if dirExists(tmp):
196
setCurrentDir(tmp)
197
- if dirExists(tmp / &"{package}-{package.ver}"):
198
- setCurrentDir(tmp / &"{package}-{package.ver}")
+ if dirExists(tmp / &"{nom}-{package.ver}"):
+ setCurrentDir(tmp / &"{nom}-{package.ver}")
199
200
let shell = execCmdEx(
201
&"""sh -efu -c '
@@ -212,7 +212,7 @@ proc buildPackages*(
212
)
213
214
writeFile(
215
- getEnv("LOGD") / nom & (if stage == native: "" else: $stage), shell.output.strip()
+ pathLog / nom & (if stage == native: "" else: '.' & $stage), shell.output.strip()
216
217
218
if shell.exitCode != QuitSuccess:
0 commit comments