From 4cd6ade0249767f49780a131192c8c969aae8432 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Mon, 26 Feb 2024 21:46:02 -0600 Subject: [PATCH] rename to forge --- .gitignore | 2 +- Makefile | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 6e713af..427bb54 100644 --- a/.gitignore +++ b/.gitignore @@ -3,4 +3,4 @@ go.mod go.sum /resources/*.so /files/* -submit-patchset +forge diff --git a/Makefile b/Makefile index b8a3669..c42ba57 100644 --- a/Makefile +++ b/Makefile @@ -2,15 +2,15 @@ all: build reset - ./submit-patchset + ./forge only-me: build reset - ./submit-patchset --only-me + ./forge --only-me stderr: build - echo "writing to /tmp/submit-patchset.log" - ./submit-patchset >/tmp/submit-patchset.log 2>&1 + echo "writing to /tmp/forge.log" + ./forge >/tmp/forge.log 2>&1 goimports: goimports -w *.go @@ -19,7 +19,7 @@ goimports: gocui: build reset - ./submit-patchset --gui gocui >/tmp/submit-patchset.log 2>&1 + ./forge --gui gocui >/tmp/forge.log 2>&1 build: echo "build it!" @@ -27,7 +27,7 @@ build: install: go install -v -x - submit-patchset + forge check-git-clean: @git diff-index --quiet HEAD -- || (echo "Git repository is dirty, please commit your changes first"; exit 1)