diff --git a/README.md b/README.md index e930102bb..a999f24af 100644 --- a/README.md +++ b/README.md @@ -14,10 +14,10 @@ and semi-automate releases. > git checkout build-tools # Set up the various worktrees. -> ./gfi setup +> ./go4it setup # Merge branches and publish a release. You probably don't want this unless you # have all my secret keys. -> ./gfi release +> ./go4it release ``` diff --git a/gfi b/go4it similarity index 98% rename from gfi rename to go4it index c1ee8beee..49a789bf2 100755 --- a/gfi +++ b/go4it @@ -131,7 +131,7 @@ def release() -> None: if check != "y": sys.exit(1) - subprocess.check_call(["git", "push", "--all", "origin"]) + subprocess.check_call(["git", "push", "origin", *(b.name for b in BRANCHES)]) for branch in BRANCHES: log(f"Uploading {branch.name}") ret = run_in(branch, "./gradlew", "uploadAll", "--no-daemon").returncode