summaryrefslogtreecommitdiff
path: root/share/bin
diff options
context:
space:
mode:
authorjohnraff <github@rafflesnagoya.com>2020-05-01 11:23:39 +0900
committerRaphaƫl Hertzog <hertzog@debian.org>2020-05-01 09:59:11 +0000
commit0e5d0483e5596e200430d28356b808af76806439 (patch)
tree66ea8d81afc59322bedce8c738f32fa737877bd1 /share/bin
parentfd18d46e0eb6abfe757f8764c65ac4c472fcdeef (diff)
downloadvyos-live-build-0e5d0483e5596e200430d28356b808af76806439.tar.gz
vyos-live-build-0e5d0483e5596e200430d28356b808af76806439.zip
Replace 'which' with 'command -v' to test for the existance of an executable
This is considered to be more robust. Two instances remain: scripts/build/chroot_archives, line 257: if [ "${LB_APT}" = "aptitude" ] && [ ! $(Chroot chroot "which aptitude") ] The command is run inside a chroot where the environment might be special, and would need further testing. manpages/Makefile, line 42: @if [ ! -x "$$(which po4a 2>/dev/null)" ]; \ I am insufficiently familiar with makefile syntax to edit this.
Diffstat (limited to 'share/bin')
-rwxr-xr-xshare/bin/Packages2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/bin/Packages b/share/bin/Packages
index ad69fad83..60cd999fc 100755
--- a/share/bin/Packages
+++ b/share/bin/Packages
@@ -11,7 +11,7 @@
set -e
-if [ ! $(which grep-aptavail) ]
+if ! command -v grep-aptavail >/dev/null
then
echo "E: program grep-aptavail not found!"