From e946840b198d3756134b9d4f4ec832b300ba0256 Mon Sep 17 00:00:00 2001 From: Liana Husikyan Date: Mon, 10 Aug 2015 13:01:28 +0200 Subject: [PATCH] fixed wrong resolving --- CommandLineInterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CommandLineInterface.cpp b/CommandLineInterface.cpp index e1980cda4..e9c9c256c 100644 --- a/CommandLineInterface.cpp +++ b/CommandLineInterface.cpp @@ -135,7 +135,7 @@ void CommandLineInterface::handleBinary(string const& _contract) } if (m_args.count(g_argCloneBinaryStr)) { - if (outputToFile(m_args[g_argCloneBinaryStr].as())) + if (m_args.count("output-dir")) { stringstream data; data << toHex(m_compiler->getCloneBytecode(_contract));