We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d10812 commit 0908ad6Copy full SHA for 0908ad6
src/lib.rs
@@ -143,7 +143,9 @@ pub mod aoc_cli {
143
match self {
144
AocCliError::CommandNotFound => write!(f, "aoc-cli is not present in environment."),
145
AocCliError::CommandNotCallable => write!(f, "aoc-cli could not be called."),
146
- AocCliError::BadExitStatus(_) => write!(f, "aoc-cli exited with a non-zero status."),
+ AocCliError::BadExitStatus(_) => {
147
+ write!(f, "aoc-cli exited with a non-zero status.")
148
+ }
149
AocCliError::IoError => write!(f, "could not write output files to file system."),
150
}
151
@@ -192,7 +194,6 @@ pub mod aoc_cli {
192
194
} else {
193
195
Err(AocCliError::BadExitStatus(output))
196
-
197
198
199
fn get_input_path(day: u8) -> String {
0 commit comments