From 74b457d9719df8ca810de9cbf964784ccee5b866 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 16 Oct 2013 20:58:21 +1300 Subject: Check for presence of binaries before script setup --- bash/bashrc.d/ftp.bash | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'bash/bashrc.d/ftp.bash') diff --git a/bash/bashrc.d/ftp.bash b/bash/bashrc.d/ftp.bash index 04518b5f..4d0e89a6 100644 --- a/bash/bashrc.d/ftp.bash +++ b/bash/bashrc.d/ftp.bash @@ -1,3 +1,8 @@ +# Bail if no ftp(1) +if ! hash ftp 2>/dev/null; then + return +fi + # Completion for ftp with .netrc machines _ftp() { local word=${COMP_WORDS[COMP_CWORD]} -- cgit v1.2.3