Skip to content

Commit 707eaef

Browse files
committed
fix: update download.py
1 parent aa25940 commit 707eaef

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -478,15 +478,12 @@ jobs:
478478
479479
## Installation:
480480
```bash
481-
# Get download.py script
482-
curl -sSL https://raw.githubusercontent.com/cpp-linter/clang-tools-wheel/main/download.py
483-
484481
# Download and install clang-format
485-
python3 download.py clang-format --version ${{ github.event.inputs.llvm_version }}
482+
curl -sSL https://raw.githubusercontent.com/cpp-linter/clang-tools-wheel/feature/main/download.py | python3 - clang-format --version ${{ github.event.inputs.llvm_version }}
486483
pip install clang-format-*.whl
487484
488485
# Download and install clang-tidy
489-
python3 download.py clang-tidy --version ${{ github.event.inputs.llvm_version }}
486+
curl -sSL https://raw.githubusercontent.com/cpp-linter/clang-tools-wheel/feature/main/download.py | python3 - clang-tidy --version ${{ github.event.inputs.llvm_version }}
490487
pip install clang-tidy-*.whl
491488
```
492489

0 commit comments

Comments
 (0)