aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-03-10 16:44:44 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2017-03-10 17:04:29 -0800
commit40419c768ab30c6ca802e5dae2ec727ed1b2df0e (patch)
tree0fc9020b0fa98f156ee618750535d501b420a424
parent62fcffff856aa2b6ef61601ecaf025166111bb02 (diff)
downloadvcpkg-40419c768ab30c6ca802e5dae2ec727ed1b2df0e.tar.gz
vcpkg-40419c768ab30c6ca802e5dae2ec727ed1b2df0e.zip
`ci`: Remove call to Environment::ensure_utilities_on_path();
-rw-r--r--toolsrc/src/commands_ci.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/toolsrc/src/commands_ci.cpp b/toolsrc/src/commands_ci.cpp
index 4a66b77d1..315308a62 100644
--- a/toolsrc/src/commands_ci.cpp
+++ b/toolsrc/src/commands_ci.cpp
@@ -1,7 +1,6 @@
#include "pch.h"
#include "vcpkg_Commands.h"
#include "vcpkglib.h"
-#include "vcpkg_Environment.h"
#include "vcpkg_Files.h"
#include "vcpkg_System.h"
#include "vcpkg_Dependencies.h"
@@ -40,8 +39,6 @@ namespace vcpkg::Commands::CI
const std::vector<package_spec_with_install_plan> install_plan = Dependencies::create_install_plan(paths, specs, status_db);
Checks::check_exit(!install_plan.empty(), "Install plan cannot be empty");
- Environment::ensure_utilities_on_path(paths);
-
std::vector<BuildResult> results;
std::vector<std::chrono::milliseconds::rep> timing;
const ElapsedTime timer = ElapsedTime::createStarted();