Skip to content

Commit

Permalink
guix: move bitcoin.conf to /share/examples dir
Browse files Browse the repository at this point in the history
Motivated by bitcoin#29139

Placing the example `bitcoin.conf` file in this directory makes it
clearer that it will not actively be used by the binary in `bin/`, and
must be moved elsewhere.
  • Loading branch information
willcl-ark committed Jan 24, 2024
1 parent e69796c commit 9256693
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contrib/guix/libexec/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,8 @@ mkdir -p "$DISTSRC"

# copy over the example bitcoin.conf file. if contrib/devtools/gen-bitcoin-conf.sh
# has not been run before buildling, this file will be a stub
cp "${DISTSRC}/share/examples/bitcoin.conf" "${DISTNAME}/"
mkdir -p "${DISTNAME}/share/examples"
cp "${DISTSRC}/share/examples/bitcoin.conf" "${DISTNAME}/share/examples/"

cp -r "${DISTSRC}/share/rpcauth" "${DISTNAME}/share/"

Expand Down

0 comments on commit 9256693

Please sign in to comment.