X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/d03f7fe6a52c623b92635d1de271806f0aa46773..382cfb780ca9a40f80e3932544bd32aeccb66e5a:/packages/command-not-found/command-not-found.c diff --git a/packages/command-not-found/command-not-found.c b/packages/command-not-found/command-not-found.c index b06c8c73..42e4e482 100644 --- a/packages/command-not-found/command-not-found.c +++ b/packages/command-not-found/command-not-found.c @@ -42,7 +42,7 @@ int main(int argc, char** argv) { char const* binary_name = current_line + 1; int distance = termux_levenshtein_distance(command_not_found, binary_name); if (distance == 0 && strcmp(command_not_found, binary_name) == 0) { - printf("The program '%s' is currently not installed. You can install it by executing:\n apt install %s\n", binary_name, current_package); + printf("The program '%s' is not installed. Install it by executing:\n apt install %s\n", binary_name, current_package); return 0; } else if (best_distance == distance) { guesses_at_best_distance++;