Skip to content

Commit 6453e2c

Browse files
authored
fix(init): quote YAML values containing colons in starter config (#53)
Closes #52
1 parent 56bca8a commit 6453e2c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/commands/init.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -351,9 +351,9 @@ build:
351351
ci:
352352
description: Run CI pipeline
353353
steps:
354-
- cmd: echo "Step 1: Lint"
355-
- cmd: echo "Step 2: Test"
356-
- cmd: echo "Step 3: Build"
354+
- cmd: 'echo "Step 1: Lint"'
355+
- cmd: 'echo "Step 2: Test"'
356+
- cmd: 'echo "Step 3: Build"'
357357
"#;
358358

359359
fs::write(path, starter).context("Failed to create rnr.yaml")?;

0 commit comments

Comments
 (0)