bf2f2229bb
In commit afa63b2dcd
I replaced `type -p' with
`command -pv'. But actually it is wrong, the right
substitution is `command -v'. We need to find our
busybox which is in the first directory in $PATH, so
`command -p' should not be used because it uses
default PATH, not current value of PATH where our
busybox binary resides.
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
5 lines
76 B
Plaintext
5 lines
76 B
Plaintext
BUSYBOX=$(command -v busybox)
|
|
SAVED_PATH=$PATH
|
|
unset PATH
|
|
$BUSYBOX which ls
|