`deno run --cached-only` downloads stuff anyways
Hey there
I recently upgraded a project to deno 2.1.10. When starting the server, I noticed that deno would download a bunch of packages.
Which is weird because my dependencies are already in the build/cache folder.
So I added --cached-only
I was at least expecting an error, but it appears deno is still downloading the dependencies as if the option did not exist.
What am I doing wrong ?
I recently upgraded a project to deno 2.1.10. When starting the server, I noticed that deno would download a bunch of packages.
DENO_DIR=build/cache TZ=UTC deno run --allow-all -- src/server.tsWhich is weird because my dependencies are already in the build/cache folder.
So I added --cached-only
DENO_DIR=build/cache TZ=UTC deno run --cached-only --allow-all -- src/server.tsI was at least expecting an error, but it appears deno is still downloading the dependencies as if the option did not exist.
What am I doing wrong ?
