Skip to content

Commit

Permalink
feat(src/cli/cli.cc): print installation path
Browse files Browse the repository at this point in the history
  • Loading branch information
chicoxyzzy committed May 18, 2023
1 parent f90e26d commit 7dd72c5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/cli/cli.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1273,7 +1273,8 @@ int main (const int argc, const char* argv[]) {
signal(SIGTERM, signalHandler);

if (is(subcommand, "-v") || is(subcommand, "--version")) {
std::cout << SSC::VERSION_FULL_STRING << std::endl;
std::cout << SSC::VERSION_FULL_STRING << std::endl << std::endl;
std::cout << "Installation path: " << getSocketHome() << std::endl;
exit(0);
}

Expand Down

0 comments on commit 7dd72c5

Please sign in to comment.