Files
2026-01-25 08:57:55 +01:00

16 lines
355 B
Bash
Executable File

#!/bin/bash
set -e
echo "This script has been replaced by the Go CLI."
echo ""
echo "Build:"
echo " go build -o wp-sk-cli ./cmd/cli"
echo ""
echo "Usage examples:"
echo " ./wp-sk-cli pending"
echo " ./wp-sk-cli changes 123"
echo " WPSK_API_URL=http://server:8080 ./wp-sk-cli pending"
echo " ./wp-sk-cli approve 456 --api http://server:8080"
exit 1