Skip to content

Commit

Permalink
zygo -> zig
Browse files Browse the repository at this point in the history
  • Loading branch information
coetry committed Aug 18, 2019
1 parent 36f1c71 commit 30048cc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -5,7 +5,7 @@ all: build test
build:
/bin/echo "package zygo" > zygo/gitcommit.go
/bin/echo "func init() { GITLASTTAG = \"$(shell git describe --abbrev=0 --tags)\"; GITLASTCOMMIT = \"$(shell git rev-parse HEAD)\" }" >> zygo/gitcommit.go
go install github.com/glycerine/zygomys/cmd/zygo
go install github.com/coetry/zygomys/cmd/zygo

test:
tests/testall.sh && echo "running 'go test'" && cd zygo && go test -v
2 changes: 1 addition & 1 deletion zygo/gitcommit.go
@@ -1,2 +1,2 @@
package zygo
func init() { GITLASTTAG = "v5.1.1"; GITLASTCOMMIT = "acef8bb25d1cad8aebed3cedb59b481795ac9fa1" }
func init() { GITLASTTAG = "v5.1.2"; GITLASTCOMMIT = "36f1c7120ff2d831cebbb6f059ddc948273a8b56" }
4 changes: 2 additions & 2 deletions zygo/repl.go
Expand Up @@ -169,9 +169,9 @@ func Repl(env *Zlisp, cfg *ZlispConfig) {

if !cfg.Quiet {
if cfg.Sandboxed {
fmt.Printf("zygo [sandbox mode] version %s\n", Version())
fmt.Printf("zig [sandbox mode] version %s\n", Version())
} else {
fmt.Printf("zygo version %s\n", Version())
fmt.Printf("zig version %s\n", Version())
}
fmt.Printf("press tab (repeatedly) to get completion suggestions. Shift-tab goes back. Ctrl-d to exit.\n")
}
Expand Down

0 comments on commit 30048cc

Please sign in to comment.