aboutsummaryrefslogtreecommitdiffstats
path: root/solc
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-08-08 03:46:00 +0800
committerGitHub <noreply@github.com>2018-08-08 03:46:00 +0800
commit8e93b729a4fb50d1d0f21b86a7434ed91ae8826a (patch)
tree0eddc8f6219bb809a197888d2f115f76fbde4754 /solc
parent4f9d72aa831edc7492da5e44a0805f41220d2d55 (diff)
parent39ffd7500e68e1603cead1a8473c1fb990fbab8f (diff)
downloaddexon-solidity-8e93b729a4fb50d1d0f21b86a7434ed91ae8826a.tar.gz
dexon-solidity-8e93b729a4fb50d1d0f21b86a7434ed91ae8826a.tar.zst
dexon-solidity-8e93b729a4fb50d1d0f21b86a7434ed91ae8826a.zip
Merge pull request #4703 from ethereum/solc-fix-double-quoting-path-names
solc: Fixes double-quoting path names on stderr.
Diffstat (limited to 'solc')
-rw-r--r--solc/CommandLineInterface.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/solc/CommandLineInterface.cpp b/solc/CommandLineInterface.cpp
index 14793759..429bd637 100644
--- a/solc/CommandLineInterface.cpp
+++ b/solc/CommandLineInterface.cpp
@@ -402,11 +402,11 @@ bool CommandLineInterface::readInputFilesAndConfigureRemappings()
{
if (!ignoreMissing)
{
- cerr << "\"" << infile << "\" is not found" << endl;
+ cerr << infile << " is not found." << endl;
return false;
}
else
- cerr << "\"" << infile << "\" is not found. Skipping." << endl;
+ cerr << infile << " is not found. Skipping." << endl;
continue;
}
@@ -415,11 +415,11 @@ bool CommandLineInterface::readInputFilesAndConfigureRemappings()
{
if (!ignoreMissing)
{
- cerr << "\"" << infile << "\" is not a valid file" << endl;
+ cerr << infile << " is not a valid file." << endl;
return false;
}
else
- cerr << "\"" << infile << "\" is not a valid file. Skipping." << endl;
+ cerr << infile << " is not a valid file. Skipping." << endl;
continue;
}