Unverified Commit 22de1d30 authored by Kirill Molchanov's avatar Kirill Molchanov Committed by GitHub

fix(command-not-found): pass arguments correctly in Termux (#10403)

parent 1d166eaa
......@@ -57,6 +57,6 @@ 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"
/data/data/com.termux/files/usr/libexec/termux/command-not-found "$1"
}
fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment