diff --git a/crates/turborepo-lib/src/commands/prune.rs b/crates/turborepo-lib/src/commands/prune.rs index 9459164233b7b..8c20d460f529f 100644 --- a/crates/turborepo-lib/src/commands/prune.rs +++ b/crates/turborepo-lib/src/commands/prune.rs @@ -24,7 +24,7 @@ pub const DEFAULT_OUTPUT_DIR: &str = "out"; pub enum Error { #[error("io error while pruning: {0}")] Io(#[from] std::io::Error), - #[error("fs error while pruning: {0}")] + #[error("File system error while pruning. The error from the operating system is: {0}")] Fs(#[from] turborepo_fs::Error), #[error("json error while pruning: {0}")] Json(#[from] serde_json::Error),