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 af9aa4b commit 932cb73Copy full SHA for 932cb73
src/runtime/runtime.c
@@ -452,7 +452,7 @@ char* find_fusermount() {
452
453
if (pid == 0) {
454
// Child process
455
- char* args[] = {fusermount_full_path, NULL};
+ char* args[] = {fusermount_full_path, "--version", NULL};
456
execvp(fusermount_full_path, args);
457
// If execvp returns, it means the executable was not found
458
exit(1);
@@ -1685,7 +1685,7 @@ int main(int argc, char* argv[]) {
1685
// printf("FUSERMOUNT_PROG set to %s\n", new_prog);
1686
free(new_prog);
1687
} else {
1688
- printf("Error: fusermount not found\n");
+ printf("Error: No suitable fusermount binary found on the $PATH\n");
1689
}
1690
1691
0 commit comments