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 c529d31 commit 9a47dc0Copy full SHA for 9a47dc0
src/main.cpp
@@ -119,6 +119,12 @@ int main(const int argc, const char* const* const argv) {
119
args.push_back(strdup("--sign-key"));
120
args.push_back(strdup(signingKey));
121
}
122
+
123
+ const char* signingArgs = getenv("SIGN_ARGS");
124
+ if (signingArgs != nullptr) {
125
+ args.push_back(strdup("--sign-args"));
126
+ args.push_back(strdup(signingArgs));
127
+ }
128
129
130
if (getenv("VERBOSE") != nullptr) {
0 commit comments