Removed forced cpp extension on cached sourcecode.
the build was successful Details

This commit is contained in:
tastytea 2018-12-29 08:16:05 +01:00
parent db4d1fcd4b
commit b68e81d36c
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 1 additions and 1 deletions

View File

@ -94,8 +94,8 @@ int main(int argc, char *argv[])
}
const fs::path original(argv[1]);
const fs::path source = cache_dir / original.filename();
const fs::path binary = cache_dir / original.stem();
const fs::path source = binary.string() + ".cpp";
string compiler_arguments;
if (!fs::exists(binary) ||