Compare commits

..

No commits in common. "7b417554ee5ebc6c9bc9583f8b98d82b77ab6ac8" and "ebcb2e9c66de9b79d98dd02faa4041c03ea13e69" have entirely different histories.

2 changed files with 4 additions and 2 deletions

View file

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

View file

@ -6,7 +6,6 @@ macro_rules! panic_issue {
)
}};
}
pub(crate) use panic_issue;
macro_rules! panic_issue_call_failed {
() => {{
@ -16,4 +15,6 @@ 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;