feat(command-not-found): add support for Termux (#9666)

This commit is contained in:
Mario A
2021-02-14 14:44:59 +01:00
committed by Marc Cornellà
parent b54a6dab9c
commit 6ae78695ef
2 changed files with 8 additions and 0 deletions

View File

@@ -53,3 +53,10 @@ if [[ -x /run/current-system/sw/bin/command-not-found ]]; then
/run/current-system/sw/bin/command-not-found -- "$@"
}
fi
# Termux: https://github.com/termux/command-not-found
if [[ -x /data/data/com.termux/files/usr/libexec/termux/command-not-found ]]; then
command_not_found_handler() {
/data/data/com.termux/files/usr/libexec/termux/command-not-found -- "$1"
}
fi