diff --git a/.gitignore b/.gitignore index 49ac6a6..96dab88 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /resources/*.so myrepos +autotypist diff --git a/Makefile b/Makefile index d75f28b..7b6b4ce 100644 --- a/Makefile +++ b/Makefile @@ -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)