Merge pull request #987 from winsvega/develop

fix CompilerStack::absolutePath
This commit is contained in:
chriseth
2016-09-01 01:16:59 +02:00
committed by GitHub
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -59,7 +59,6 @@ test_script:
- cd %APPVEYOR_BUILD_FOLDER%\build\test\%CONFIGURATION%
- copy "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\redist\x86\Microsoft.VC140.CRT\msvc*.dll" .
- soltest.exe -- --ipcpath \\.\pipe\geth.ipc
- ps: Stop-Process -Id $ethProc.Id
artifacts:
- path: solidity-windows.zip
+1 -1
View File
@@ -555,7 +555,7 @@ string CompilerStack::absolutePath(string const& _path, string const& _reference
result = result.parent_path();
else if (*it != ".")
result /= *it;
return result.string();
return result.generic_string();
}
void CompilerStack::compileContract(