#!/bin/sh

echo "Error: Swirls CLI 'postinstall' script was not run." >&2
echo "" >&2
echo "This occurs when using '--ignore-scripts' during installation, or when using a" >&2
echo "package manager that does not run 'postinstall' scripts by default." >&2
echo "" >&2
echo "To fix this, reinstall without the '--ignore-scripts' flag:" >&2
echo "  npm install -g @swirls/cli" >&2
echo "" >&2
echo "Or run the install script directly: curl -fsSL https://swirls.ai/install | bash" >&2
exit 1
