Relocate *-help.sh to their respective packages

This commit is contained in:
Michael Vines
2019-03-20 14:34:57 -07:00
parent 985592cf40
commit 9b7c1d5650
2 changed files with 1 additions and 1 deletions

View File

@ -1,21 +0,0 @@
#!/usr/bin/env bash
set -e
cd "$(dirname "$0")"/..
cargo build --package solana-install
export PATH=$PWD/target/debug:$PATH
echo "\`\`\`manpage"
solana-install --help
echo "\`\`\`"
echo ""
commands=(init info deploy update run)
for x in "${commands[@]}"; do
echo "\`\`\`manpage"
solana-install "${x}" --help
echo "\`\`\`"
echo ""
done

View File

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