diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-01-14 22:58:06 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-14 21:58:06 +0000 |
commit | a918804ee08071d2193c197031581ae24f12e492 (patch) | |
tree | a2f14f051eef408b735b42c52300689f968410cf /cli/args/mod.rs | |
parent | fc17ddbcc43708b6265758bc3e034ab0b5fcb8c3 (diff) |
feat(unstable): remove --unstable-workspaces flag (#21891)
The workspaces feature is still considered unstable and can change.
Requiring this flag hinders DX.
Diffstat (limited to 'cli/args/mod.rs')
-rw-r--r-- | cli/args/mod.rs | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/cli/args/mod.rs b/cli/args/mod.rs index 23723d916..ae48aae50 100644 --- a/cli/args/mod.rs +++ b/cli/args/mod.rs @@ -707,14 +707,6 @@ impl CliOptions { None }; - // TODO(bartlomieju): remove in v1.39 or v1.40. - if let Some(wsconfig) = &maybe_workspace_config { - if !wsconfig.members.is_empty() && !flags.unstable_workspaces { - eprintln!("Use of unstable 'workspaces' feature. The --unstable-workspaces flags must be provided."); - std::process::exit(70); - } - } - if let Some(env_file_name) = &flags.env_file { if (from_filename(env_file_name)).is_err() { bail!("Unable to load '{env_file_name}' environment variable file") |