rename to forge

This commit is contained in:
Jeff Carr 2024-02-26 21:46:02 -06:00
parent 8af6410978
commit 4cd6ade024
2 changed files with 7 additions and 7 deletions

2
.gitignore vendored
View File

@ -3,4 +3,4 @@ go.mod
go.sum go.sum
/resources/*.so /resources/*.so
/files/* /files/*
submit-patchset forge

View File

@ -2,15 +2,15 @@
all: build all: build
reset reset
./submit-patchset ./forge
only-me: build only-me: build
reset reset
./submit-patchset --only-me ./forge --only-me
stderr: build stderr: build
echo "writing to /tmp/submit-patchset.log" echo "writing to /tmp/forge.log"
./submit-patchset >/tmp/submit-patchset.log 2>&1 ./forge >/tmp/forge.log 2>&1
goimports: goimports:
goimports -w *.go goimports -w *.go
@ -19,7 +19,7 @@ goimports:
gocui: build gocui: build
reset reset
./submit-patchset --gui gocui >/tmp/submit-patchset.log 2>&1 ./forge --gui gocui >/tmp/forge.log 2>&1
build: build:
echo "build it!" echo "build it!"
@ -27,7 +27,7 @@ build:
install: install:
go install -v -x go install -v -x
submit-patchset forge
check-git-clean: check-git-clean:
@git diff-index --quiet HEAD -- || (echo "Git repository is dirty, please commit your changes first"; exit 1) @git diff-index --quiet HEAD -- || (echo "Git repository is dirty, please commit your changes first"; exit 1)