mirror of
https://github.com/minio/minio.git
synced 2025-01-06 12:33:21 -05:00
11 lines
229 B
Bash
11 lines
229 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
#
|
||
|
|
||
|
set -e
|
||
|
|
||
|
rm -f parquet.thrift
|
||
|
wget -q https://github.com/apache/parquet-format/raw/df6132b94f273521a418a74442085fdd5a0aa009/src/main/thrift/parquet.thrift
|
||
|
thrift --gen go parquet.thrift
|
||
|
gofmt -w -s gen-go/parquet
|