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 3e1f5e9 commit e32d176Copy full SHA for e32d176
src/runtime/runtime.c
@@ -1427,6 +1427,11 @@ char* appimage_hexlify(const char* bytes, const size_t numBytes) {
1427
}
1428
1429
int main(int argc, char* argv[]) {
1430
+ const bool verbose = (getenv("VERBOSE") != NULL);
1431
+ if (verbose) {
1432
+ fprintf(stderr, "Running in verbose mode\n");
1433
+ }
1434
+
1435
char appimage_path[PATH_MAX];
1436
char argv0_path[PATH_MAX];
1437
char* arg;
@@ -1492,8 +1497,6 @@ int main(int argc, char* argv[]) {
1492
1497
exit(0);
1493
1498
1494
1499
1495
- const bool verbose = (getenv("VERBOSE") != NULL);
1496
-
1500
/* extract the AppImage */
1501
if (arg && strcmp(arg, "appimage-extract") == 0) {
1502
char* pattern;
0 commit comments