mirror of
https://github.com/dolthub/dolt.git
synced 2026-04-26 11:39:05 -05:00
6e316d9975
Finding and running build scripts remains in Go (tools/run_all_build.go and supporting libs), but the build scripts themselves are in python now. This is because Go doesn't have much support for copying files and directories around, which is kind of the primary focus of build and packaging scripts. Towards issue 677
379 B
379 B
Noms type language parser
The parser for the Noms type language is currently generated using Pigeon (https://github.com/PuerkitoBio/pigeon) and goimports. To get the packages needed to work on the parser, run
go get -u github.com/PuerkitoBio/pigeon golang.org/x/tools/cmd/goimports
Once these are set up, simply run go generate to generate go code for the parser.