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:
parent
785cb3a754
commit
adebfbbf24
1 changed files with 1 additions and 1 deletions
2
third_party/nix/src/libmain/shared.cc
vendored
2
third_party/nix/src/libmain/shared.cc
vendored
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue