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;
|
std::cout << readLongLong(pipes.second) << std::endl;
|
||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
throw Error(format("Unknown substituter query `%1%'") % cmd);
|
throw Error(format("unknown substituter query `%1%'") % cmd);
|
||||||
std::cout << std::endl;
|
std::cout << std::endl;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -888,7 +888,7 @@ static void opServe(Strings opFlags, Strings opArgs)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
throw Error(format("Unknown serve query `%1%'") % cmd);
|
throw Error(format("unknown serve query `%1%'") % cmd);
|
||||||
}
|
}
|
||||||
out.flush();
|
out.flush();
|
||||||
}
|
}
|
||||||
|
@ -897,7 +897,7 @@ static void opServe(Strings opFlags, Strings opArgs)
|
||||||
dumpPath(readString(in), out);
|
dumpPath(readString(in), out);
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
throw Error(format("Unknown serve command `%1%'") % cmd);
|
throw Error(format("unknown serve command `%1%'") % cmd);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue