You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
addCmd.Flags().String("concurrent-downloads", "", "Max concurrent network requests, default is `50`")
22
+
addCmd.Flags().String("concurrent-solves", "", "Max concurrent solves, default is the number of CPUs")
23
23
addCmd.Flags().Bool("editable", false, "Whether the pypi requirement should be editable")
24
24
addCmd.Flags().StringP("feature", "f", "", "The feature for which the dependency should be modified")
25
-
addCmd.Flags().Bool("frozen", false, "Install the environment as defined in the lockfile")
25
+
addCmd.Flags().Bool("frozen", false, "Install the environment as defined in the lockfile, doesn't update lockfile if it isn't up-to-date with the manifest file")
26
26
addCmd.Flags().StringP("git", "g", "", "The git url to use when adding a git dependency")
27
-
addCmd.Flags().Bool("host", false, "The specified dependencies are host dependencies")
28
-
addCmd.Flags().Bool("locked", false, "Check if lockfile is up-to-date before installing the environment")
29
-
addCmd.Flags().StringP("manifest-path", "m", "", "The path to pixi.toml, pyproject.toml, or the workspace directory")
27
+
addCmd.Flags().Bool("locked", false, "Check if lockfile is up-to-date before installing the environment, aborts when lockfile isn't up-to-date with the manifest file")
30
28
addCmd.Flags().Bool("no-install", false, "Don't modify the environment, only modify the lock-file")
buildCmd.Flags().Bool("frozen", false, "Install the environment as defined in the lockfile")
25
-
buildCmd.Flags().Bool("locked", false, "Check if lockfile is up-to-date before installing the environment")
22
+
buildCmd.Flags().String("concurrent-downloads", "", "Max concurrent network requests, default is `50`")
23
+
buildCmd.Flags().String("concurrent-solves", "", "Max concurrent solves, default is the number of CPUs")
24
+
buildCmd.Flags().Bool("frozen", false, "Install the environment as defined in the lockfile, doesn't update lockfile if it isn't up-to-date with the manifest file")
25
+
buildCmd.Flags().Bool("locked", false, "Check if lockfile is up-to-date before installing the environment, aborts when lockfile isn't up-to-date with the manifest file")
26
26
buildCmd.Flags().Bool("no-install", false, "Don't modify the environment, only modify the lock-file")
0 commit comments