From 2f7a016c02ae9f6486246f791c3a5e76ec2bc78d Mon Sep 17 00:00:00 2001 From: Dane Pitkin <48041712+danepitkin@users.noreply.github.com> Date: Fri, 7 Jul 2023 09:13:14 -0400 Subject: [PATCH] chore: update github URLs (#253) The core Arrow repo has updated the name of its HEAD branch. The old links still work, but might as well update. --- extensions/nanoarrow_ipc/dev/update_fbs.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/extensions/nanoarrow_ipc/dev/update_fbs.sh b/extensions/nanoarrow_ipc/dev/update_fbs.sh index a8c14a7d8..3fd9a8824 100755 --- a/extensions/nanoarrow_ipc/dev/update_fbs.sh +++ b/extensions/nanoarrow_ipc/dev/update_fbs.sh @@ -17,11 +17,11 @@ # get the .fbs files from the arrow repo mkdir format && cd format -curl -L https://github.com/apache/arrow/raw/master/format/Schema.fbs --output Schema.fbs -curl -L https://github.com/apache/arrow/raw/master/format/Tensor.fbs --output Tensor.fbs -curl -L https://github.com/apache/arrow/raw/master/format/SparseTensor.fbs --output SparseTensor.fbs -curl -L https://github.com/apache/arrow/raw/master/format/Message.fbs --output Message.fbs -curl -L https://github.com/apache/arrow/raw/master/format/File.fbs --output File.fbs +curl -L https://github.com/apache/arrow/raw/main/format/Schema.fbs --output Schema.fbs +curl -L https://github.com/apache/arrow/raw/main/format/Tensor.fbs --output Tensor.fbs +curl -L https://github.com/apache/arrow/raw/main/format/SparseTensor.fbs --output SparseTensor.fbs +curl -L https://github.com/apache/arrow/raw/main/format/Message.fbs --output Message.fbs +curl -L https://github.com/apache/arrow/raw/main/format/File.fbs --output File.fbs # compile using flatcc flatcc --common --reader --builder --verifier --recursive --outfile ../../src/nanoarrow_ipc/nanoarrow_ipc_flatcc_generated.h *.fbs