mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user