diff options
author | chriseth <chris@ethereum.org> | 2017-01-18 21:28:00 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-18 21:28:00 +0800 |
commit | 005e1908854fe26611a175640fad87b430609d16 (patch) | |
tree | 7a9f257478ce326508dd56d42fe9dfd8a7d998eb /solc | |
parent | 4f4963131bd969fa063a3aad980139dad2034087 (diff) | |
parent | 94b092d87c051e8846f5d61eaa1a4581b6588c71 (diff) | |
download | dexon-solidity-005e1908854fe26611a175640fad87b430609d16.tar dexon-solidity-005e1908854fe26611a175640fad87b430609d16.tar.gz dexon-solidity-005e1908854fe26611a175640fad87b430609d16.tar.bz2 dexon-solidity-005e1908854fe26611a175640fad87b430609d16.tar.lz dexon-solidity-005e1908854fe26611a175640fad87b430609d16.tar.xz dexon-solidity-005e1908854fe26611a175640fad87b430609d16.tar.zst dexon-solidity-005e1908854fe26611a175640fad87b430609d16.zip |
Merge pull request #1397 from roadriverrail/contract_collision
Error out when contracts collide on name
Diffstat (limited to 'solc')
-rw-r--r-- | solc/CommandLineInterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp index e322455b..e49e8517 100644 --- a/solc/CommandLineInterface.cpp +++ b/solc/CommandLineInterface.cpp @@ -186,7 +186,7 @@ void CommandLineInterface::handleBinary(string const& _contract) if (m_args.count(g_argBinary)) { if (m_args.count(g_argOutputDir)) - createFile(_contract + ".bin", m_compiler->object(_contract).toHex()); + createFile(m_compiler->filesystemFriendlyName(_contract) + ".bin", m_compiler->object(_contract).toHex()); else { cout << "Binary: " << endl; |