Skip to content

fix(completions): remove problematic character for powershell #28102

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 13, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cli/args/flags.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1772,7 +1772,7 @@ If you specify a directory instead of a file, the path is expanded to all contai
}

fn bundle_subcommand() -> Command {
command("bundle", "⚠️ `deno bundle` was removed in Deno 2.
command("bundle", "`deno bundle` was removed in Deno 2.

See the Deno 1.x to 2.x Migration Guide for migration instructions: https://docs.deno.com/runtime/manual/advanced/migrate_deprecations", UnstableArgsConfig::ResolutionOnly)
.hide(true)
Expand Down Expand Up @@ -3321,7 +3321,7 @@ different location, use the <c>--output</> flag:

fn vendor_subcommand() -> Command {
command("vendor",
"⚠️ `deno vendor` was removed in Deno 2.
"`deno vendor` was removed in Deno 2.

See the Deno 1.x to 2.x Migration Guide for migration instructions: https://docs.deno.com/runtime/manual/advanced/migrate_deprecations",
UnstableArgsConfig::ResolutionOnly
Expand Down
2 changes: 1 addition & 1 deletion tests/specs/bundle/removed/bundle_help.out
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
⚠️ `deno bundle` was removed in Deno 2.
`deno bundle` was removed in Deno 2.

See the Deno 1.x to 2.x Migration Guide for migration instructions: https://docs.deno.com/runtime/manual/advanced/migrate_deprecations

Expand Down
2 changes: 1 addition & 1 deletion tests/specs/vendor/removed/vendor_help.out
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
⚠️ `deno vendor` was removed in Deno 2.
`deno vendor` was removed in Deno 2.

See the Deno 1.x to 2.x Migration Guide for migration instructions: https://docs.deno.com/runtime/manual/advanced/migrate_deprecations

Expand Down