Skip to content

Commit

Permalink
final patch?
Browse files Browse the repository at this point in the history
  • Loading branch information
baileympearson committed Dec 4, 2024
1 parent 16e9a9d commit 41d4ce8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: npm run install-zstd
shell: bash

- name: install dependencies and compmile
- name: install dependencies and compile
run: npm install --loglevel verbose
shell: bash

Expand Down
7 changes: 5 additions & 2 deletions etc/install-zstd.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,11 @@ download_zstd() {
download_windows
exit 0 # no need to build windows
else
# -C -> specifies the output location
# --strip-components -> removes one level of directory nesting
# tar flags
# -C specifies the output location
# --strip-components removes one level of directory nesting
# curl flags
# -L follows redirects
curl -L "https://github.com/facebook/zstd/releases/download/v$ZSTD_VERSION/zstd-$ZSTD_VERSION.tar.gz" \
| tar -zxf - -C deps/zstd --strip-components 1
fi
Expand Down

0 comments on commit 41d4ce8

Please sign in to comment.