Skip to content

Commit

Permalink
fix: make --watch and --inspect conflicting args (denoland#7610)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacasonato committed Sep 21, 2020
1 parent 333462b commit dc65719
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cli/flags.rs
Expand Up @@ -1380,6 +1380,8 @@ fn watch_arg<'a, 'b>() -> Arg<'a, 'b> {
Arg::with_name("watch")
.requires("unstable")
.long("watch")
.conflicts_with("inspect")
.conflicts_with("inspect-brk")
.help("Watch for file changes and restart process automatically")
.long_help(
"Watch for file changes and restart process automatically.
Expand Down

0 comments on commit dc65719

Please sign in to comment.