Skip to content

Commit

Permalink
feat(rust/driver/datafusion): remove O option from curl
Browse files Browse the repository at this point in the history
  • Loading branch information
tokoko committed Oct 27, 2024
1 parent 9e660a1 commit 3184f7c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,13 +73,13 @@ jobs:
- name: Install Protoc
if: runner.os == 'Linux'
run: |
curl -LO "https://github.com/protocolbuffers/protobuf/releases/download/v28.3/protoc-28.3-linux-$(uname -m).zip" -o protoc.zip
curl -L "https://github.com/protocolbuffers/protobuf/releases/download/v28.3/protoc-28.3-linux-$(uname -m).zip" -o protoc.zip
unzip protoc.zip -d $HOME/.local
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- name: Install Protoc
if: runner.os == 'macOS'
run: |
curl -LO "https://github.com/protocolbuffers/protobuf/releases/download/v28.3/protoc-28.3-osx-$(uname -m).zip" -o protoc.zip
curl -L "https://github.com/protocolbuffers/protobuf/releases/download/v28.3/protoc-28.3-osx-$(uname -m).zip" -o protoc.zip
unzip "protoc.zip" -d $HOME/.local
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- uses: actions/download-artifact@v4
Expand Down

0 comments on commit 3184f7c

Please sign in to comment.