16 lines
355 B
Bash
Executable File
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
|