1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-01-08 08:20:29 +00:00

Rename the tool

gfi doesn't mean anything. go4it is proper children's programming
This commit is contained in:
Jonathan Coates 2021-01-09 21:41:39 +00:00
parent 10d2ea6fba
commit 0b67b66a5d
2 changed files with 3 additions and 3 deletions

View File

@ -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
```

View File

@ -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