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
conan config get returns the raw values from the conan.conf file. This might be totally useless, or even wrong, because if there are env-vars defined, as CONAN_STORAGE_PATH, then the value returned by conan config get storage.path will be the one in the file, but not the one really applied in the configuration when running conan.
Check if this should be extended for other fields, like cacert_path, or non_interactive
Investigate what makes sense for conan config set. Probably it should warn (at least) if the env-var is set, because the value set won't be used either.
Investigate what to do with sections: conan config get storage will return path = ./data, without resolving the data as conan config get storage.path
The text was updated successfully, but these errors were encountered:
From
conan config get
returns the raw values from the conan.conf file. This might be totally useless, or even wrong, because if there are env-vars defined, as CONAN_STORAGE_PATH, then the value returned byconan config get storage.path
will be the one in the file, but not the one really applied in the configuration when running conan.#5350 fixes this for
storage.path
only:cacert_path
, ornon_interactive
conan config set
. Probably it should warn (at least) if the env-var is set, because the value set won't be used either.conan config get storage
will returnpath = ./data
, without resolving the data asconan config get storage.path
The text was updated successfully, but these errors were encountered: