install: Fix string formatting in an error
This commit is contained in:
parent
2205c48ee4
commit
766a7c224b
@ -379,9 +379,11 @@ then
|
||||
"${CFG_PREFIX}/bin/rustc" --version > /dev/null
|
||||
if [ $? -ne 0 ]
|
||||
then
|
||||
err "can't execute installed rustc binary. installation may be broken. " \
|
||||
"if this is expected then rerun install.sh with \`--disable-verify\` " \
|
||||
"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\` "
|
||||
ERR="${ERR}or \`make install\` with \`--disable-verify-install\`"
|
||||
err "${ERR}"
|
||||
fi
|
||||
fi
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user