From b203d4b43cb498aa7670c091b0d10aea456f24ed Mon Sep 17 00:00:00 2001 From: psychocrypt Date: Thu, 30 Nov 2017 22:04:47 +0100 Subject: add environment variable `XMRSTAK_NOWAIT` - add documentation - add environment variable `XMRSTAK_NOWAIT` --- xmrstak/cli/cli-miner.cpp | 6 ++++++ xmrstak/misc/console.cpp | 9 +++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) (limited to 'xmrstak') diff --git a/xmrstak/cli/cli-miner.cpp b/xmrstak/cli/cli-miner.cpp index e152a02..e32733b 100644 --- a/xmrstak/cli/cli-miner.cpp +++ b/xmrstak/cli/cli-miner.cpp @@ -87,6 +87,12 @@ void help() cout<<" -u, --user USERNAME pool user name or wallet address"<print_str("Press any key to exit."); - get_key(); + size_t envSize = 0; + getenv_s(&envSize, nullptr, 0, "XMRSTAK_NOWAIT"); + if(envSize == 0) + { + printer::inst()->print_str("Press any key to exit."); + get_key(); + } std::exit(code); } -- cgit v1.1