Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/vite_task_plan/src/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pub enum CdCommandError {
NoHomeDirectory,

#[error("Too many args for 'cd' command")]
ToManyArgs,
TooManyArgs,
}

#[derive(Debug, thiserror::Error)]
Expand Down
2 changes: 1 addition & 1 deletion crates/vite_task_plan/src/plan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ async fn plan_task_as_execution_node(
}
[dir] => Path::new(dir.as_str()).into(),
_ => {
return Err(Error::CdCommand(CdCommandError::ToManyArgs));
return Err(Error::CdCommand(CdCommandError::TooManyArgs));
}
};
cwd = cwd.join(cd_target.as_ref()).into();
Expand Down
Loading