Separate between "local" (i.e. development) and localised (production) packages.
Motivation
An artist, or more likely a developer, is going to want both development packages and localised packages on his system, and be able to exclude development packages on-demand.
$ rez env alita maya --no-local
This should disable any development packages, and use only production packages, including localised packages.
Implementation
With a REZ_LOCALISED_PACKAGES_PATH environment variable, look for localised packages here, instead of REZ_LOCAL_PACKAGES_PATH, the latter being the default to simplify getting started.
Goal
Separate between "local" (i.e. development) and localised (production) packages.
Motivation
An artist, or more likely a developer, is going to want both development packages and localised packages on his system, and be able to exclude development packages on-demand.
This should disable any development packages, and use only production packages, including localised packages.
Implementation
With a
REZ_LOCALISED_PACKAGES_PATH
environment variable, look for localised packages here, instead ofREZ_LOCAL_PACKAGES_PATH
, the latter being the default to simplify getting started.