diff options
| author | Tomo Ueda <[email protected]> | 2021-09-02 12:54:43 -0700 |
|---|---|---|
| committer | Tomo Ueda <[email protected]> | 2021-09-02 12:54:43 -0700 |
| commit | f5c716526aaafb318a98e974c8b2fbe02870646b (patch) | |
| tree | e14145656fcff86ec2c7a1ecf4ad28e0b40f36aa /contrib/devtools | |
| parent | s/DOGE/DIS/g (diff) | |
| download | discoin-f5c716526aaafb318a98e974c8b2fbe02870646b.tar.xz discoin-f5c716526aaafb318a98e974c8b2fbe02870646b.zip | |
really s/doge/dis/g this time
Diffstat (limited to 'contrib/devtools')
| -rwxr-xr-x | contrib/devtools/gen-manpages.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/contrib/devtools/gen-manpages.sh b/contrib/devtools/gen-manpages.sh index e8838db52..d7f9e688c 100755 --- a/contrib/devtools/gen-manpages.sh +++ b/contrib/devtools/gen-manpages.sh @@ -4,10 +4,10 @@ TOPDIR=${TOPDIR:-$(git rev-parse --show-toplevel)} SRCDIR=${SRCDIR:-$TOPDIR/src} MANDIR=${MANDIR:-$TOPDIR/doc/man} -BITCOIND=${BITCOIND:-$SRCDIR/dogecoind} -BITCOINCLI=${BITCOINCLI:-$SRCDIR/dogecoin-cli} -BITCOINTX=${BITCOINTX:-$SRCDIR/dogecoin-tx} -BITCOINQT=${BITCOINQT:-$SRCDIR/qt/dogecoin-qt} +BITCOIND=${BITCOIND:-$SRCDIR/discoind} +BITCOINCLI=${BITCOINCLI:-$SRCDIR/discoin-cli} +BITCOINTX=${BITCOINTX:-$SRCDIR/discoin-tx} +BITCOINQT=${BITCOINQT:-$SRCDIR/qt/discoin-qt} [ ! -x $BITCOIND ] && echo "$BITCOIND not found or not executable." && exit 1 @@ -15,8 +15,8 @@ BITCOINQT=${BITCOINQT:-$SRCDIR/qt/dogecoin-qt} BTCVER=($($BITCOINCLI --version | head -n1 | awk -F'[ -]' '{ print $6, $7 }')) # Create a footer file with copyright content. -# This gets autodetected fine for dogecoind if --version-string is not set, -# but has different outcomes for dogecoin-qt and dogecoin-cli. +# This gets autodetected fine for discoind if --version-string is not set, +# but has different outcomes for discoin-qt and discoin-cli. echo "[COPYRIGHT]" > footer.h2m $BITCOIND --version | sed -n '1!p' >> footer.h2m |