From 15d892407b0bdcd8fd5bad28eb3a541955bfe5bd Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Wed, 8 May 2013 22:36:37 -0400 Subject: Fix type -p bashism that crept in via recent patches. Closes: #707319 --- uninit.d/50vcs-uninit | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'uninit.d') diff --git a/uninit.d/50vcs-uninit b/uninit.d/50vcs-uninit index 519a725..d717196 100755 --- a/uninit.d/50vcs-uninit +++ b/uninit.d/50vcs-uninit @@ -21,9 +21,9 @@ if ! grep -q "$managed_by_etckeeper" "$file"; then exit 0 else realfile="$file" - if type -p tempfile >/dev/null 2>&1; then + if which tempfile >/dev/null 2>&1; then tempfile="tempfile" - elif type -p mktemp >/dev/null 2>&1; then + elif which mktemp >/dev/null 2>&1; then tempfile="mktemp" else echo "etckeeper warning: can't find tempfile or mktemp" >&2 -- cgit v1.2.3