1
0

contrib: minor clean-up shell usage

This commit is contained in:
SomberNight
2026-01-23 17:44:57 +00:00
parent b495ee773d
commit ceadcac922
2 changed files with 3 additions and 3 deletions

View File

@@ -22,9 +22,9 @@ version=$("$CONTRIB"/print_electrum_version.py)
echo "Found $(ls dist/*.exe | wc -w) files to verify."
for mine in $(ls dist/*.exe); do
for mine in dist/*.exe; do
echo "---------------"
f="$(basename $mine)"
f="$(basename "$mine")"
if test -f "signed/$f"; then
echo "Found file at signed/$f"
else

View File

@@ -46,7 +46,7 @@ set -x
info "updating www repo"
./contrib/make_download "$WWW_DIR"
info "signing the version announcement file"
sig=$(./run_electrum -o signmessage $ELECTRUM_SIGNING_ADDRESS $VERSION -w $ELECTRUM_SIGNING_WALLET)
sig=$(./run_electrum -o signmessage "$ELECTRUM_SIGNING_ADDRESS" "$VERSION" -w "$ELECTRUM_SIGNING_WALLET")
# note: the contents of "extradata" are currently not signed. We could add another field, extradata_sigs,
# containing signature(s) for "extradata". extradata, being json, would have to be canonically
# serialized before signing.