fix wget usage error
Some checks failed
ci / test (push) Failing after 6m18s
ci / build (push) Successful in 1m21s

This commit is contained in:
CJ_Clippy 2025-08-15 10:21:50 -08:00
parent 3021050375
commit addba64df5
3 changed files with 7 additions and 2 deletions

View File

@ -19,6 +19,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install canvas dependencies
run: |
apt-get update
apt-get install -y libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev pkg-config
- name: Setup nodejs
uses: actions/setup-node@v4
with:

View File

@ -37,7 +37,7 @@ ENV PATH="$PATH:/app/whisper.cpp/build/bin"
ENV LD_LIBRARY_PATH="/app/whisper.cpp/build/src:/app/whisper.cpp/build/ggml/src:/usr/local/lib:/usr/lib"
# Install b2-cli
RUN wget https://github.com/Backblaze/B2_Command_Line_Tool/releases/download/v4.4.1/b2-linux -o /usr/local/bin/b2 && chmod +x /usr/local/bin/b2
RUN wget https://github.com/Backblaze/B2_Command_Line_Tool/releases/download/v4.4.1/b2-linux -O /usr/local/bin/b2 && chmod +x /usr/local/bin/b2
# Copy and install dependencies
COPY package.json package-lock.json ./

View File

@ -1,7 +1,7 @@
{
"name": "futureporn",
"private": true,
"version": "2.4.7",
"version": "2.4.8",
"type": "module",
"scripts": {
"dev": "concurrently npm:dev:serve npm:dev:build npm:dev:worker npm:dev:compose npm:dev:sftp",