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 45896b9 commit acdd3daCopy full SHA for acdd3da
src/verify.cpp
@@ -95,7 +95,10 @@ int main(int argc, char *const *argv) {
95
std::string token;
96
// If a positional argument is present, treat it as the token (with warning)
97
if (optind < argc) {
98
- fprintf(stderr, "%s: Warning: Providing the token on the command line is insecure. Please use stdin instead.\n", argv[0]);
+ fprintf(stderr,
99
+ "%s: Warning: Providing the token on the command line is "
100
+ "insecure. Please use stdin instead.\n",
101
+ argv[0]);
102
token = argv[optind];
103
} else {
104
// Read token from stdin
0 commit comments