#!/usr/bin/env sh set -eu INSTALLER_URL="https://raw.githubusercontent.com/whoisjayd/notewise/main/scripts/install.sh" if command -v curl >/dev/null 2>&1; then curl -fsSL "$INSTALLER_URL" | sh exit $? fi if command -v wget >/dev/null 2>&1; then wget -qO- "$INSTALLER_URL" | sh exit $? fi echo "error: curl or wget is required to install NoteWise" >&2 exit 1