error messages start in lowercase
Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
parent
2246aa77d2
commit
7438f0bc2b
|
@ -89,7 +89,7 @@ static void query(std::pair<FdSink, FdSource> & pipes) {
|
|||
std::cout << readLongLong(pipes.second) << std::endl;
|
||||
}
|
||||
} else
|
||||
throw Error(format("Unknown substituter query `%1%'") % cmd);
|
||||
throw Error(format("unknown substituter query `%1%'") % cmd);
|
||||
std::cout << std::endl;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -888,7 +888,7 @@ static void opServe(Strings opFlags, Strings opArgs)
|
|||
}
|
||||
break;
|
||||
default:
|
||||
throw Error(format("Unknown serve query `%1%'") % cmd);
|
||||
throw Error(format("unknown serve query `%1%'") % cmd);
|
||||
}
|
||||
out.flush();
|
||||
}
|
||||
|
@ -897,7 +897,7 @@ static void opServe(Strings opFlags, Strings opArgs)
|
|||
dumpPath(readString(in), out);
|
||||
break;
|
||||
default:
|
||||
throw Error(format("Unknown serve command `%1%'") % cmd);
|
||||
throw Error(format("unknown serve command `%1%'") % cmd);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue