Skip to content

Commit

Permalink
Make FS error more clear.
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyshew committed Jul 30, 2024
1 parent 5c11459 commit c504e8e
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 37 deletions.
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 was: {0}")]
Fs(#[from] turborepo_fs::Error),
#[error("json error while pruning: {0}")]
Json(#[from] serde_json::Error),
Expand Down
11 changes: 0 additions & 11 deletions examples/kitchen-sink/packages/ui/src/link/index.test.tsx

This file was deleted.

25 changes: 0 additions & 25 deletions examples/kitchen-sink/packages/ui/src/link/index.tsx

This file was deleted.

0 comments on commit c504e8e

Please sign in to comment.