Skip to content

Commit

Permalink
fixup! build: move from make to cargo xtask workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ErichDonGubler committed Apr 10, 2023
1 parent 29e149e commit f2fa2e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xtask/hlsl-snapshots/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ impl Display for BadRonParseKind {
impl Error for BadRonParseKind {
fn source(&self) -> Option<&(dyn Error + 'static)> {
match self {
BadRonParseKind::Read { source } => Some(source),
BadRonParseKind::Parse { source } => Some(source),
BadRonParseKind::Read { source } => source.source(),
BadRonParseKind::Parse { source } => source.source(),
BadRonParseKind::Empty => None,
}
}
Expand Down

0 comments on commit f2fa2e9

Please sign in to comment.