From c77c9b29581b76e00caa56f654ba4326d297f355 Mon Sep 17 00:00:00 2001 From: Marvin Hagemeister Date: Fri, 18 Oct 2024 13:12:34 +0200 Subject: [PATCH] fix(help): missing package specifier (#26380) Was notified of one more occurance where we were missing an explicit specifier for a `deno add` call. See https://github.com/denoland/deno/issues/26295#issuecomment-2421637401 --- cli/args/flags.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/args/flags.rs b/cli/args/flags.rs index b92e5dd945..cb3d55e50d 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -1178,7 +1178,7 @@ static DENO_HELP: &str = cstr!( Dependency management: add Add dependencies - deno add @std/assert | deno add npm:express + deno add jsr:@std/assert | deno add npm:express install Install script as an executable uninstall Uninstall a script previously installed with deno install remove Remove dependencies from the configuration file