From b10915371fb8fe5ff0224bd168caaa372419dde0 Mon Sep 17 00:00:00 2001 From: Gerald Pinder Date: Mon, 26 Feb 2024 20:26:14 -0500 Subject: [PATCH] fix: Filter out `/` in tag names --- 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 6077405f..b037f19b 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