This website requires JavaScript.
Explore
Mirrors
Help
Sign In
Apple-2gs-SW
/
hush
Watch
1
Star
0
Fork
0
You've already forked hush
mirror of
https://github.com/sheumann/hush.git
synced
2024-12-25 03:32:18 +00:00
Code
Issues
Projects
Releases
Wiki
Activity
28634924f0
hush
/
testsuite
/
which
/
which-uses-default-path
5 lines
76 B
Plaintext
Raw
Normal View
History
Unescape
Escape
testsuite: fix last "which" change In commit afa63b2dcdc9b9 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>
2014-01-23 13:41:53 +00:00
BUSYBOX=$(command -v busybox)
Do not segfault if PATH is unset.
2002-01-14 18:30:10 +00:00
SAVED_PATH=$PATH
unset PATH
$BUSYBOX which ls
Reference in New Issue
Copy Permalink