Browse Source

contrib/release_www.sh: minor clean-up

master
SomberNight 1 year ago
parent
commit
8dae5237d3
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
  1. 7
      contrib/release_www.sh

7
contrib/release_www.sh

@ -43,7 +43,12 @@ 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)
echo "{ \"version\":\"$VERSION\", \"signatures\":{ \"$ELECTRUM_SIGNING_ADDRESS\":\"$sig\"}}" > "$WWW_DIR"/version
cat <<EOF > "$WWW_DIR"/version
{
"version": "$VERSION",
"signatures": {"$ELECTRUM_SIGNING_ADDRESS": "$sig"}
}
EOF
# push changes to website repo
pushd "$WWW_DIR"

Loading…
Cancel
Save