From a43acc201247b12c864c737388f69bb633fb6449 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Fri, 22 Nov 2024 10:39:19 -0600 Subject: [PATCH] fix: update help, solver is sat by default sat was made the default in pr #1273 --- src/nimblepkg/options.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nimblepkg/options.nim b/src/nimblepkg/options.nim index 92660511..b694750e 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.