From 35e68444dd5e9d3d5fc39409c48be6eb3fa05e07 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Wed, 17 Apr 2024 22:38:03 +0200 Subject: Replace recipe separator with :: Make the single : usable for other syntax in the recipe language. --- crates/common/src/types.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/common/src/types.rs') diff --git a/crates/common/src/types.rs b/crates/common/src/types.rs index a5d6678..2a06275 100644 --- a/crates/common/src/types.rs +++ b/crates/common/src/types.rs @@ -15,7 +15,7 @@ pub struct TaskID { impl Display for TaskID { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { - write!(f, "{}:{}", self.recipe, self.task) + write!(f, "{}::{}", self.recipe, self.task) } } -- cgit v1.2.3