Closed devnoname120 closed 1 month ago
The latest updates on your projects. Learn more about Vercel for Git ↗︎
Name | Status | Preview | Comments | Updated (UTC) |
---|---|---|---|---|
screenpipe | ✅ Ready (Inspect) | Visit Preview | 💬 Add feedback | Oct 19, 2024 0:05am |
thx @devnoname120
name: pull request about: submit changes to the project title: "[pr] fix: build: ignore ~/.wgetrc to avoid interference" labels: '' assignees: 'louis030195'
description
Users can define personal settings for wget in
~/.wgetrc
. When thewget
command is run it reads this configuration file by default and add the corresponding options. Thescripts/pre_build.js
script fails when some user options are specified in the configuration file because they conflict with the options that this script uses. The solution is to ignore this user configuration file.related issue: ø
type of change
how to test
~/.wgetrc
and just puttimestamping = on
inside.bun scripts/pre_build.js
fromscreenpipe-app-tauri
and confirm that wget errors out because-nc
and--timestamp
can't be combined.bun scripts/pre_build.js
again. This time around wget works properly.checklist
additional notes
any other relevant information about the pr.