[WIP: error during build script] +clojure
Invariably when pkg build reaches the stage of executing the build script in this package.yml the following error is printed and building fails.
What might I be missing that is causing such an issue?
I presume users are able to build/test/use a local pantry entry without relying on a remote registry, especially for contributions, but perhaps this is not the case and there is some "behind the scenes" work that is needed before this can advance.
...
+ mkdir -p /Users/theuser/.pkgx/clojure.org/v1.11.1.1413
clojure.org
error: Uncaught DownloadError: http: 404: https://dist.pkgx.dev/clojure.org/darwin/x86-64/versions.txt
throw new DownloadError(rsp.status, {src: url})
^
at Object.get (https://deno.land/x/[email protected]/src/hooks/useInventory.ts:36:11)
at eventLoopTick (ext:core/01_core.js:183:11)
at async Object.select (https://deno.land/x/[email protected]/src/hooks/useInventory.ts:18:20)
at async file:///Users/xento/.pkgx/pkgx.sh/brewkit/v0.55.8/libexec/install.ts:15:21
it's trying to test clojure, but your build script doesn't install anything, so it's trying to install it, i believe.
it's trying to test clojure, but your build script doesn't install anything, so it's trying to install it, i believe.
Thank you, that would be a sensible thing for it to try. I'll work on the build script now.