Skip to content

Commit

Permalink
Make FS error more clear. (#8881)
Browse files Browse the repository at this point in the history
### Description

<!--
  ✍️ Write a short summary of your work.
  If necessary, include relevant screenshots.
-->

### Testing Instructions

<!--
  Give a quick description of steps to test your changes.
-->
  • Loading branch information
anthonyshew authored Jul 30, 2024
1 parent f1fcdb6 commit df34541
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/turborepo-lib/src/commands/prune.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down

0 comments on commit df34541

Please sign in to comment.