14 lines
342 B
Bash
14 lines
342 B
Bash
|
#!/bin/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
|