Sean Chittenden fa0d388ef1 Don't assume /bin/bash is installed on all OSes
Use `/usr/bin/env bash` where appropriate.
2016-02-02 15:16:49 -08:00

14 lines
350 B
Bash
Executable File

#!/usr/bin/env bash
set -e
ZSH_FUNC_DIR="/usr/share/zsh/site-functions"
if [ -d "$ZSH_FUNC_DIR" ]; then
echo "Installing into ${ZSH_FUNC_DIR}..."
sudo cp ./_consul "$ZSH_FUNC_DIR"
echo "Installed! Make sure that ${ZSH_FUNC_DIR} is in your \$fpath."
else
echo "Could not find ${ZSH_FUNC_DIR}. Please install manually."
exit 1
fi