From 7e6453664e3c296ffac9111dcae30dadc089dc04 Mon Sep 17 00:00:00 2001 From: Gerald Pinder Date: Mon, 26 Feb 2024 21:04:14 -0500 Subject: [PATCH] fix: Filter out `/` in tag names (#94) --- recipe/src/recipe.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/src/recipe.rs b/recipe/src/recipe.rs index 6077405..b037f19 100644 --- a/recipe/src/recipe.rs +++ b/recipe/src/recipe.rs @@ -115,7 +115,7 @@ impl<'a> Recipe<'a> { debug!("Finished generating tags!"); debug!("Tags: {tags:#?}"); - tags + tags.into_iter().map(|t| t.replace('/', "_")).collect() } /// # Parse a recipe file