Skip to content

Commit

Permalink
Remove bisonw-tray from showvers.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
jrick committed Nov 12, 2024
1 parent 5cefb84 commit 9dd9a54
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions showvers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,8 @@
set -e

TUPLE=$(go version | perl -lane 'print $F[-1] =~ s,/,-,r')
OS=$(echo $TUPLE | cut -f1 -d-)

for APP in dcrd dcrctl dcrwallet bisonw bisonw-tray bwctl dcrlncli dcrlnd politeiavoter; do
if [ "$OS" != "windows" ] && [ "$APP" == "bisonw-tray" ]; then
continue
fi
for APP in dcrd dcrctl dcrwallet bisonw bwctl dcrlncli dcrlnd politeiavoter; do
APP="./bin/${TUPLE}/${APP}"
[ -x "${APP}" ] && "${APP}" --version || echo "WARNING: ${APP} is not built"
done

0 comments on commit 9dd9a54

Please sign in to comment.