feat(tvix): Print "Tvix" in the version string

Rather than printing "Nix" in the version string, print "Tvix". This is
cosmetically nice, but also is very useful when making sure I actually
have installed tvix on a system successfully.

Change-Id: Idd1a9954bd66509327f52b7457cfba2f090ab30c
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1924
Reviewed-by: kanepyork <rikingcoding@gmail.com>
Tested-by: BuildkiteCI
This commit is contained in:
Griffin Smith 2020-08-31 22:40:05 -04:00 committed by glittershark
parent 785cb3a754
commit adebfbbf24

View file

@ -253,7 +253,7 @@ void parseCmdLine(
}
void printVersion(const std::string& programName) {
std::cout << format("%1% (Nix) %2%") % programName % nixVersion << std::endl;
std::cout << format("%1% (Tvix) %2%") % programName % nixVersion << std::endl;
// TODO(tazjin): figure out what the fuck this is
/*if (verbosity > lvlInfo) {