We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2205c48 commit 766a7c2Copy full SHA for 766a7c2
src/etc/install.sh
@@ -379,9 +379,11 @@ then
379
"${CFG_PREFIX}/bin/rustc" --version > /dev/null
380
if [ $? -ne 0 ]
381
then
382
- err "can't execute installed rustc binary. installation may be broken. " \
383
- "if this is expected then rerun install.sh with \`--disable-verify\` " \
384
- "or \`make install\` with \`--disable-verify-install\`"
+ ERR="can't execute installed rustc binary. "
+ ERR="${ERR}installation may be broken. "
+ ERR="${ERR}if this is expected then rerun install.sh with \`--disable-verify\` "
385
+ ERR="${ERR}or \`make install\` with \`--disable-verify-install\`"
386
+ err "${ERR}"
387
fi
388
389
0 commit comments