From 5b5707ba762b56b0deab29d7d97add4eea42a0d3 Mon Sep 17 00:00:00 2001 From: "Calvin A. Allen" Date: Mon, 9 Feb 2026 09:45:25 -0500 Subject: [PATCH] fix(init): quote YAML values containing colons in starter config Closes #52 --- src/commands/init.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/commands/init.rs b/src/commands/init.rs index 422074e..f7d738c 100644 --- a/src/commands/init.rs +++ b/src/commands/init.rs @@ -351,9 +351,9 @@ build: ci: description: Run CI pipeline steps: - - cmd: echo "Step 1: Lint" - - cmd: echo "Step 2: Test" - - cmd: echo "Step 3: Build" + - cmd: 'echo "Step 1: Lint"' + - cmd: 'echo "Step 2: Test"' + - cmd: 'echo "Step 3: Build"' "#; fs::write(path, starter).context("Failed to create rnr.yaml")?;