From 29ba0f3c03d12cc1eb80e25286ffa0560da72723 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Tue, 12 Aug 2025 17:30:35 +0500 Subject: [PATCH] IfcConvert - prompt expected user response --- src/ifcconvert/IfcConvert.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcconvert/IfcConvert.cpp b/src/ifcconvert/IfcConvert.cpp index a0af85b6ff..db033c390d 100644 --- a/src/ifcconvert/IfcConvert.cpp +++ b/src/ifcconvert/IfcConvert.cpp @@ -587,7 +587,7 @@ int main(int argc, char** argv) { if (file_exists(IfcUtil::path::to_utf8(output_filename)) && !vmap.count("yes")) { std::string answer; - cout_ << "A file '" << output_filename << "' already exists. Overwrite the existing file?" << std::endl; + cout_ << "A file '" << output_filename << "' already exists. Overwrite the existing file? y/n" << std::endl; std::cin >> answer; if (!boost::iequals(answer, "yes") && !boost::iequals(answer, "y")) { return EXIT_SUCCESS;