Merge pull request #4703 from ethereum/solc-fix-double-quoting-path-names

solc: Fixes double-quoting path names on stderr.
This commit is contained in:
chriseth
2018-08-07 21:46:00 +02:00
committed by GitHub
2 changed files with 54 additions and 4 deletions
+4 -4
View File
@@ -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;
}