We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd8b045 commit e853969Copy full SHA for e853969
app/buck2_common/src/legacy_configs/cells.rs
@@ -493,7 +493,10 @@ impl BuckConfigBasedCells {
493
#[derive(buck2_error::Error, Debug)]
494
#[buck2(tag = Input)]
495
enum ExternalCellOriginParseError {
496
- #[error("Unknown external cell origin `{0}`")]
+ // Disabled is handled outside this function
497
+ #[error(
498
+ "Unknown external cell origin `{0}`: valid values are 'bundled', 'git', 'disabled'"
499
+ )]
500
Unknown(String),
501
#[error("Missing buckconfig `{0}.{1}` for external cell configuration")]
502
MissingConfiguration(String, String),
0 commit comments