about summary refs log tree commit diff
path: root/scripts/install.in
diff options
context:
space:
mode:
authorGraham Christensen (Target) <39596207+graham-at-target@users.noreply.github.com>2018-10-16T14·22-0400
committerGitHub <noreply@github.com>2018-10-16T14·22-0400
commitea41838ae049817fd996ead14e040d922bb7c067 (patch)
tree1a943cd62a26b81ec259a64a73a81ad751b5b52e /scripts/install.in
parent9617a043541d77d79e4f20f9676aae63de72f45d (diff)
install script: remove unportable command check, fixup errant escape
`which` isn't necessarily portable, but `command -v` is an equivalent form.

Additionally, the `\'` is not necessary, as it is already quoted by `"`.
Diffstat (limited to 'scripts/install.in')
-rw-r--r--scripts/install.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/install.in b/scripts/install.in
index 26ab85ba09..7bff7b216d 100644
--- a/scripts/install.in
+++ b/scripts/install.in
@@ -11,14 +11,14 @@ oops() {
 }
 
 tmpDir="$(mktemp -d -t nix-binary-tarball-unpack.XXXXXXXXXX || \
-          oops "Can\'t create temporary directory for downloading the Nix binary tarball")"
+          oops "Can't create temporary directory for downloading the Nix binary tarball")"
 cleanup() {
     rm -rf "$tmpDir"
 }
 trap cleanup EXIT INT QUIT TERM
 
 require_util() {
-    type "$1" > /dev/null 2>&1 || which "$1" > /dev/null 2>&1 ||
+    type "$1" > /dev/null 2>&1 || command -v "$1" > /dev/null 2>&1 ||
         oops "you do not have '$1' installed, which I need to $2"
 }