Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move quote shell out of nimscriptapi #1111

Merged
merged 1 commit into from
Jun 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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(" ")