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 860eb1f commit 8be972dCopy full SHA for 8be972d
src/main.cpp
@@ -185,7 +185,7 @@ int main(const int argc, const char* const* const argv) {
185
186
doSomethingWithEnvVar({"LDAI_OUTPUT", "OUTPUT"}, [&](const auto& value) {
187
(void) value;
188
- args.push_back(strdup(getenv("OUTPUT")));
+ args.push_back(strdup(value.c_str()));
189
});
190
191
doSomethingWithEnvVar({"LDAI_NO_APPSTREAM", "NO_APPSTREAM"}, [&](const auto& value) {
0 commit comments