diff options
author | Rob Landley <rob@landley.net> | 2020-05-11 14:14:57 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2020-05-11 14:14:57 -0500 |
commit | 7135718d368c6098f78fff5a43df8be4efc152f4 (patch) | |
tree | a8d68372b11fa5e7e2f385425c77ff08c0d9afd8 /www | |
parent | cccb1741140f9b3258294f77cbced98d3f6f16a7 (diff) | |
download | toybox-7135718d368c6098f78fff5a43df8be4efc152f4.tar.gz |
Update release procedure checklist.
Diffstat (limited to 'www')
-rw-r--r-- | www/release.txt | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/www/release.txt b/www/release.txt index 267ff450..7dede942 100644 --- a/www/release.txt +++ b/www/release.txt @@ -1,7 +1,7 @@ VERBOSE=fail make distclean defconfig toybox tests news.html - release notes Update version in main.c - - git commit main.c www/news.html + - git commit toys.h www/news.html tag repo - git tag $VER - git push @@ -13,9 +13,10 @@ source tarball binaries cd ../clean git pull ../toybox - LDFLAGS=--static scripts/cross.sh all make clean defconfig toybox + make distclean; make defconfig root CROSS=all + mkdir send; for i in root/*/fs/bin/toybox; do X=${i#*/}; X=${X%%/*}; cp $i send/toybox-$X; done ssh landley.net "mkdir landley.net/toybox/downloads/binaries/$VER" - scp toybox-* landley.net:landley.net/toybox/downloads/binaries/$VER/ + scp send/toybox-* landley.net:landley.net/toybox/downloads/binaries/$VER/ update symlink update help.html make clean; make defconfig; make |