aboutsummaryrefslogtreecommitdiff
path: root/src/build-remote
diff options
context:
space:
mode:
authorJohn Ericson <git@JohnEricson.me>2022-11-25 08:14:32 -0500
committerGitHub <noreply@github.com>2022-11-25 08:14:32 -0500
commit26534f141cb52adf0135e86c71628cdef844a57a (patch)
treedff8140578d26993973cb8baf334948664b36660 /src/build-remote
parent13f2a6f38db44385ae1c7d3d01170149de328abb (diff)
parentbc9692a6b701fffe25d2e3b1d16f00edd596930f (diff)
Merge branch 'master' into indexed-store-path-outputs
Diffstat (limited to 'src/build-remote')
-rw-r--r--src/build-remote/build-remote.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/build-remote/build-remote.cc b/src/build-remote/build-remote.cc
index ff8ba2724..6b81ecc49 100644
--- a/src/build-remote/build-remote.cc
+++ b/src/build-remote/build-remote.cc
@@ -186,12 +186,12 @@ static int main_build_remote(int argc, char * * argv)
// build the hint template.
std::string errorText =
"Failed to find a machine for remote build!\n"
- "derivation: %s\nrequired (system, features): (%s, %s)";
+ "derivation: %s\nrequired (system, features): (%s, [%s])";
errorText += "\n%s available machines:";
errorText += "\n(systems, maxjobs, supportedFeatures, mandatoryFeatures)";
for (unsigned int i = 0; i < machines.size(); ++i)
- errorText += "\n(%s, %s, %s, %s)";
+ errorText += "\n([%s], %s, [%s], [%s])";
// add the template values.
std::string drvstr;