Compare commits

...

2 commits

Author SHA1 Message Date
7b417554ee
(fmt) include after macro_rules! 2026-04-14 14:15:53 +10:00
5bf0814115
maybe path:* is still good practice? 2026-04-14 14:15:36 +10:00
2 changed files with 2 additions and 4 deletions

View file

@ -157,8 +157,7 @@ mod tests {
.build()
.unwrap();
// let flakeref = FlakeRefBuilder::new(format!("path:{}#subthing", tmp_dir.path().display())) // DEBUG
let flakeref = FlakeRefBuilder::new(format!("{}#subthing", tmp_dir.path().display()))
let flakeref = FlakeRefBuilder::new(format!("path:{}#subthing", tmp_dir.path().display()))
.build()
.unwrap();

View file

@ -6,6 +6,7 @@ macro_rules! panic_issue {
)
}};
}
pub(crate) use panic_issue;
macro_rules! panic_issue_call_failed {
() => {{
@ -15,6 +16,4 @@ macro_rules! panic_issue_call_failed {
crate::util::panic_issue!("[nixide] call to `{}` failed with \"{}\"", ::stdext::debug_name!(), format!($($arg),*))
}};
}
pub(crate) use panic_issue;
pub(crate) use panic_issue_call_failed;