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

21
install/install-help.sh Executable file
View File

@ -0,0 +1,21 @@
#!/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