mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-18 00:45:47 +00:00
* Organize perf-stats runs * reorg * scripts/perf/timings-2026-02-22.txt * iterating * iterating * more * .gitignore * more * link checks
7 lines
188 B
Bash
Executable file
7 lines
188 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for go in go1.15.15 go1.16.12 go1.17.5 go1.18beta1; do
|
|
$go clean github.com/johnkerl/miller/v6/cmd/mlr
|
|
$go build github.com/johnkerl/miller/v6/cmd/mlr
|
|
mv mlr mlr-$go
|
|
done
|