build: make tidy-beta for removing old beta releases

s3-about
Nick Craig-Wood 2018-09-01 18:21:54 +01:00
parent 6396872d75
commit b0dd218fea
2 changed files with 18 additions and 0 deletions

View File

@ -23,6 +23,7 @@ Making a release
* make upload_website
* make upload_github
* make startdev
* run bin/tidy-beta <previous version> to tidy old betas
* # announce with forum post, twitter post, G+ post
Early in the next release cycle update the vendored dependencies

17
bin/tidy-beta Executable file
View File

@ -0,0 +1,17 @@
#!/bin/sh
# Use this script after a release to tidy the betas
version="$1"
if [ "$version" = "" ]; then
echo "Syntax: $0 <version> [delete]"
exit 1
fi
dry_run="--dry-run"
if [ "$2" = "delete" ]; then
dry_run=""
else
echo "Running in --dry-run mode"
echo "Use '$0 $version delete' to actually delete files"
fi
rclone ${dry_run} --fast-list -P --checkers 16 --transfers 16 delete --include "**/${version}**" memstore:beta-rclone-org