Skip to content

Commit

Permalink
Drop CONDA_OVERRIDE_WIN environment variable
Browse files Browse the repository at this point in the history
Unsupported by Conda and not useful in Mamba.
  • Loading branch information
jonashaag committed Sep 6, 2023
1 parent bbac096 commit fed92f0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
1 change: 0 additions & 1 deletion libmamba/include/mamba/core/util_os.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ namespace mamba

void run_as_admin(const std::string& args);
bool enable_long_paths_support(bool force, Palette palette = Palette::no_color());
std::string windows_version();
std::string macos_version();
std::string linux_version();

Expand Down
5 changes: 0 additions & 5 deletions libmamba/src/core/util_os.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -213,11 +213,6 @@ namespace mamba
std::string windows_version()
{
LOG_DEBUG << "Loading Windows virtual package";
auto override_version = env::get("CONDA_OVERRIDE_WIN");
if (override_version)
{
return override_version.value();
}

if (!util::on_win)
{
Expand Down

0 comments on commit fed92f0

Please # to comment.