Skip to content

Commit

Permalink
fix: solver is sat by default
Browse files Browse the repository at this point in the history
updates the help as sat was made the default in pr nim-lang#1273
  • Loading branch information
daylinmorgan committed Nov 22, 2024
1 parent 53fc319 commit e3b8ba0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/nimblepkg/options.nim
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ Nimble Options:
to be manipulated. If not present creates it.
--useSystemNim Use system nim and ignore nim from the lock
file if any
--solver:sat|legacy Use the SAT solver or the legacy (default) for dependency resolution.
--solver:sat|legacy Use the SAT solver (default) or the legacy for dependency resolution.
--requires Add extra packages to the dependency resolution. Uses the same syntax as the Nimble file. Example: nimble install --requires "pkg1; pkg2 >= 1.2"
--disableNimBinaries Disable the use of nim precompiled binaries. Note in some platforms precompiled binaries are not available but the flag can still be used to avoid compile the Nim version once and reuse it.
Expand Down Expand Up @@ -910,4 +910,4 @@ proc isSubdirOf*(subdir, baseDir: string): bool =
when defined(windows):
normalizedSubdir.toLower.startsWith(normalizedBaseDir.toLower)
else:
normalizedSubdir.startsWith(normalizedBaseDir)
normalizedSubdir.startsWith(normalizedBaseDir)

0 comments on commit e3b8ba0

Please sign in to comment.