#!/bin/sh if ! command -v path-wizard > /dev/null 2>&1; then read -p "ao-mud is not installed, install now? [y/n]: " choice if [ "$choice" = "y" ]; then SCRIPT_DIR=$(dirname "$0"); eval "cd \"$SCRIPT_DIR\" && pwd" chmod +x $SCRIPT_DIR/spells/path-wizard $SCRIPT_DIR/spells/path-wizard add $SCRIPT_DIR/spells echo "Your spellbook has been activated, please open a fresh terminal now." exit 0 else echo "Ok, well the mud won't work until you install it by adding the spells directory to your PATH." exit 1 fi fi mud-menu