Remove deprecated script (#6258)

This commit is contained in:
Tyera Eulberg 2019-10-07 14:14:55 -06:00 committed by GitHub
parent 17f169f446
commit 4a071b06bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 21 deletions

View File

@ -1,21 +0,0 @@
#!/usr/bin/env bash
set -e
cd "$(dirname "$0")"/..
cargo build --package solana-cli
export PATH=$PWD/target/debug:$PATH
echo "\`\`\`manpage"
solana --help
echo "\`\`\`"
echo ""
commands=(address airdrop balance cancel confirm deploy fees get-transaction-count pay send-signature send-timestamp)
for x in "${commands[@]}"; do
echo "\`\`\`manpage"
solana "${x}" --help
echo "\`\`\`"
echo ""
done