Consul is a distributed, highly available, and data center aware solution to connect and configure applications across dynamic, distributed infrastructure.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
342 B

#!/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