From b3ace1a0a57f6b612c26847b28c422473d3b8a7b Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Fri, 22 Nov 2024 10:32:15 -0600 Subject: [PATCH] fix: update help, solver is sat by default sat was made the default in pr #1273 --- src/nimblepkg/options.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nimblepkg/options.nim b/src/nimblepkg/options.nim index 92660511..5320e453 100644 --- a/src/nimblepkg/options.nim +++ b/src/nimblepkg/options.nim @@ -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. @@ -910,4 +910,4 @@ proc isSubdirOf*(subdir, baseDir: string): bool = when defined(windows): normalizedSubdir.toLower.startsWith(normalizedBaseDir.toLower) else: - normalizedSubdir.startsWith(normalizedBaseDir) \ No newline at end of file + normalizedSubdir.startsWith(normalizedBaseDir)