1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-22 14:52:40 +01:00

Add missing space in string

This commit is contained in:
vrana 2012-09-12 10:42:36 -07:00
parent 64f35f0b83
commit 261fd592b9

View file

@ -54,10 +54,9 @@ final class ArcanistRubyLinter extends ArcanistLinter {
list($err) = exec_manual('which %s', $ruby_bin);
if ($err) {
throw new ArcanistUsageException(
"Ruby does not appear to be installed on this system.".
"Install it or add ".
"'lint.ruby.prefix' in your .arcconfig to point to the directory ".
"where it resides.");
"Ruby does not appear to be installed on this system. Install it or ".
"add 'lint.ruby.prefix' in your .arcconfig to point to ".
"the directory where it resides.");
}
}