Merge branch 'master' into jcarr

This commit is contained in:
Jeff Carr 2024-01-18 05:43:27 -06:00
commit 58fc261974
2 changed files with 5 additions and 4 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
/resources/*.so
myrepos
autotypist

View File

@ -1,9 +1,9 @@
all: build
./myrepos
./autotypist
stderr: build
echo "writing to /tmp/myrepos.stderr"
myrepos >/tmp/myrepos.stderr 2>&1
echo "writing to /tmp/autotypist.stderr"
autotypist >/tmp/autotypist.stderr 2>&1
build:
echo "build it!"
@ -14,7 +14,7 @@ install:
cp ~/go/src/go.wit.com/toolkits/*.so resources/
rm -f ~/go/src/go.wit.com/toolkits/*.so
go install -v -x
myrepos
autotypist
check-git-clean:
@git diff-index --quiet HEAD -- || (echo "Git repository is dirty, please commit your changes first"; exit 1)