We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 091bdea commit 0c6e952Copy full SHA for 0c6e952
src/Companion.cpp
@@ -1315,7 +1315,7 @@ void Companion::Process() {
1315
if(wrapper != nullptr) {
1316
// Add additional files specified by the user
1317
for (const auto& filePath : this->gAdditionalFiles) {
1318
- std::ifstream input(filePath, std::ios::binary);
+ std::ifstream input(this->gSourceDirectory / filePath, std::ios::binary);
1319
if (input.is_open()) {
1320
std::vector<char> data((std::istreambuf_iterator<char>(input)), std::istreambuf_iterator<char>());
1321
input.close();
0 commit comments