From 9913b0ff78ffa25feee2ae862f6a81408ff388dc Mon Sep 17 00:00:00 2001 From: David Baker Date: Wed, 7 Jul 2021 10:58:54 +0100 Subject: [PATCH] Fix confused toolchain / target naming Co-authored-by: J. Ryan Stinnett --- hak/matrix-seshat/check.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hak/matrix-seshat/check.js b/hak/matrix-seshat/check.js index 7ccbd8f..b2a6afc 100644 --- a/hak/matrix-seshat/check.js +++ b/hak/matrix-seshat/check.js @@ -70,7 +70,8 @@ module.exports = async function(hakEnv, moduleInfo) { if (err) { reject( "rustc can't build for target " + hakEnv.getTargetId() + - ": ensure the correct toolchain is installed", + ": ensure target is installed via `rustup target add " + hakEnv.getTargetId() + "` " + + "or your package manager if not using `rustup`", ); } fsProm.unlink('tmp').then(resolve);