Fix bad merge artifact(?)

Looks like merging up munged line 188 in CommandLineInterface.cpp,
so that a string literal was being used where a global variable should
be.
This commit is contained in:
Rhett Aultman 2017-01-05 20:08:34 -05:00
parent fda39afdba
commit 610156fb92

View File

@ -185,7 +185,7 @@ void CommandLineInterface::handleBinary(string const& _contract)
{
if (m_args.count(g_argBinary))
{
if (m_args.count("output-dir"))
if (m_args.count(g_argOutputDir))
createFile(m_compiler->filesystemFriendlyName(_contract) + ".bin", m_compiler->object(_contract).toHex());
else
{