Skip to content

Commit

Permalink
Move quote shell out of nimscriptapi (#1111)
Browse files Browse the repository at this point in the history
  • Loading branch information
yyoncho authored Jun 8, 2023
1 parent 7484582 commit 8eebcf2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/nimble.nim
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ proc processAllDependencies(pkgInfo: PackageInfo, options: Options):
if options.task in pkgInfo.taskRequires:
result.incl pkgInfo.processFreeDependencies(pkgInfo.taskRequires[options.task], options)

putEnv(nimblePathsEnv, result.map(dep => dep.getRealDir()).toSeq().join("|"))
putEnv(nimblePathsEnv, result.map(dep => dep.getRealDir().quoteShell).toSeq().join("|"))

proc allDependencies(pkgInfo: PackageInfo, options: Options): HashSet[PackageInfo] =
## Returns all dependencies for a package (Including tasks)
Expand Down
2 changes: 1 addition & 1 deletion src/nimblepkg/nimscriptapi.nim
Original file line number Diff line number Diff line change
Expand Up @@ -248,4 +248,4 @@ proc getPaths*(): seq[string] =
proc getPathsClause*(): string =
## Returns the paths to the dependencies as consumed by the nim compiler.
return getPaths().mapIt("--path:" & it.quoteShell).join(" ")
return getPaths().mapIt("--path:" & it).join(" ")

0 comments on commit 8eebcf2

Please sign in to comment.