Skip to content

Commit

Permalink
fixup! fixup! Increase verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAssassin committed Nov 24, 2024
1 parent b2bee4f commit 30341b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/runtime/runtime.c
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ int appimage_print_binary(char* fname, unsigned long offset, unsigned long lengt
return 0;
}

char* find_fusermount() {
char* find_fusermount(bool verbose) {
char* fusermount_base = "fusermount";

char* fusermount_path = getenv("PATH");
Expand Down Expand Up @@ -1697,7 +1697,7 @@ int main(int argc, char* argv[]) {

fusermountPath = getenv("FUSERMOUNT_PROG");
if (fusermountPath == NULL) {
char* new_prog = find_fusermount();
char* new_prog = find_fusermount(verbose);
if (new_prog != NULL) {
setenv("FUSERMOUNT_PROG", new_prog, 1);
if (verbose) {
Expand Down

0 comments on commit 30341b0

Please sign in to comment.