command-not-found: Be less verbose

This commit is contained in:
Fredrik Fornwall 2015-07-16 16:44:31 -04:00
parent 3dd3d87b39
commit bda292fbb1
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
TERMUX_PKG_HOMEPAGE=http://termux.com
TERMUX_PKG_DESCRIPTION="Suggest installation of packages in interactive shell sessions"
TERMUX_PKG_VERSION=0.4
TERMUX_PKG_VERSION=0.5
termux_step_make_install () {
TERMUX_LIBEXEC_DIR=$TERMUX_PREFIX/libexec/termux

View File

@ -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++;