You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just found out that deno install is not working properly if the version of a module has not been specified. Without a version tag only one file is downloaded and therefore the installed program does not work due to missing depedencies.
I think it has something to do with the redirect happening but it's just an idea.
How to reproduce?
This does not work properly: deno install --allow-net -f -n sherlock https://deno.land/x/sherlock/cli.ts
This does: deno install --allow-net -f -n sherlock https://deno.land/x/[email protected]/cli.ts
I think the first command should have the same results as manually setting the version to let users always install the newest version automatically.
The text was updated successfully, but these errors were encountered:
Which is #3082. Another reason we need to revert the bundle on install until we resolve some bundle issues. I should be able to start looking at all of this very soon.
Hi,
I just found out that
deno install
is not working properly if the version of a module has not been specified. Without a version tag only one file is downloaded and therefore the installed program does not work due to missing depedencies.I think it has something to do with the redirect happening but it's just an idea.
How to reproduce?
This does not work properly:
deno install --allow-net -f -n sherlock https://deno.land/x/sherlock/cli.ts
This does:
deno install --allow-net -f -n sherlock https://deno.land/x/[email protected]/cli.ts
I think the first command should have the same results as manually setting the version to let users always install the newest version automatically.
The text was updated successfully, but these errors were encountered: