diff --git a/share/completions/adb.fish b/share/completions/adb.fish index 34f2e7266..f093f69d6 100644 --- a/share/completions/adb.fish +++ b/share/completions/adb.fish @@ -74,7 +74,7 @@ function __fish_adb_list_files end # Return list of directories suffixed with '/' - __fish_adb_run_command find -H "$token*" -maxdepth 0 -type d 2\>/dev/null | awk '{print $1"/"}' + __fish_adb_run_command find -H "$token*" -maxdepth 0 -type d 2\>/dev/null | awk '{print $0"/"}' # Return list of files __fish_adb_run_command find -H "$token*" -maxdepth 0 -type f 2\>/dev/null end