From 86e70edb07bd7973b03d3e3c41c46c203c94001b Mon Sep 17 00:00:00 2001 From: Billy O'Neal Date: Wed, 20 Oct 2021 16:12:03 -0700 Subject: [PATCH] Fix incorrect ordering in ci ExclusionPredicate that broke attempting to update vcpkg-tool in the normal repo. (#224) --- src/vcpkg/commands.ci.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vcpkg/commands.ci.cpp b/src/vcpkg/commands.ci.cpp index 549b489824..20519a6ca5 100644 --- a/src/vcpkg/commands.ci.cpp +++ b/src/vcpkg/commands.ci.cpp @@ -303,8 +303,8 @@ namespace vcpkg::Commands::CI { std::set exclusions; std::set host_exclusions; - Triplet host_triplet; Triplet target_triplet; + Triplet host_triplet; bool operator()(const PackageSpec& spec) const {