Skip to content

Commit 44fba1f

Browse files
committed
uploadrefs: also update the seednodes shipped in the installers
1 parent 0cc3858 commit 44fba1f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

uploadrefs

+6
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,9 @@ fi
2828
# gpg will prompt before overwriting, which is not desirable here.
2929
rm -f "$seedrefsPath.gpg"
3030
gpg -o "$seedrefsPath.gpg" --sign "$seedrefsPath" || exit
31+
32+
# update the installer seedrefs
33+
for i in wininstaller-innosetup/install_node/seednodes.fref wininstaller/res/install_node/seednodes.fref java_installer/offline/seednodes.fref java_installer/bin/seednodes.fref; do
34+
cp "$seedrefsPath" $HOME/$i
35+
(cd $(dirname $HOME/$i); git diff --name-only $HOME/$i | grep . && echo seednodes were updated in $HOME/$i - Please commit.; cd -)
36+
done

0 commit comments

Comments
 (0)