mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-30 03:01:39 +00:00
10 lines
198 B
Bash
Executable file
10 lines
198 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -euo pipefail
|
|
|
|
# Override GOCC codegen with customized error handling
|
|
cp src/parsing/errors.go.template src/parsing/errors/errors.go
|
|
|
|
go build mlr.go
|
|
cp mlr mlrgo
|
|
echo "Compile OK"
|