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 43e130c commit ace1d83Copy full SHA for ace1d83
src/main.cpp
@@ -107,6 +107,8 @@ int main(const int argc, const char* const* const argv) {
107
std::cout << "Embedding update information: " << updateInformation << std::endl;
108
args.push_back(strdup("-u"));
109
args.push_back(updateInformation);
110
+ } else {
111
+ args.push_back(strdup("-g"));
112
}
113
114
if (getenv("SIGN") != nullptr) {
@@ -120,8 +122,6 @@ int main(const int argc, const char* const* const argv) {
120
122
if (getenv("OUTPUT") != nullptr) {
121
123
args.push_back(strdup(getenv("OUTPUT")));
124
-
- args.push_back(strdup("-g"));
125
126
args.push_back(nullptr);
127
0 commit comments