Skip to content

Commit

Permalink
allow dcrinstall bin to be overridden
Browse files Browse the repository at this point in the history
  • Loading branch information
jrick committed Aug 30, 2024
1 parent a29a235 commit e7e151d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dcrinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set -e

TUPLE=$(go version | perl -lane 'print $F[-1] =~ s,/,-,r')
DCRINSTALL=./bin/${TUPLE}/dcrinstall
DCRINSTALL=${DCRINSTALL:-./bin/${TUPLE}/dcrinstall}

[ -x ${DCRINSTALL} ] || go run . -dist dcrinstall
[ -s fake-latest ] || go run . -dist dcrinstall-manifests
Expand Down

0 comments on commit e7e151d

Please sign in to comment.