aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAria Shrimpton <me@aria.rip>2024-01-30 01:04:39 +0000
committerAria Shrimpton <me@aria.rip>2024-01-30 01:04:39 +0000
commit3a914d9541c061d98eb5e6510607975e41f2bc1b (patch)
tree2775eb448a340e846fc36c6d00a163e795a7897d /src
parent1908cff238bad10a9824e674bf6f52a2dca15522 (diff)
testing: escape : in section slugs
Diffstat (limited to 'src')
-rw-r--r--src/Justfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Justfile b/src/Justfile
index 9c97185..2b43947 100644
--- a/src/Justfile
+++ b/src/Justfile
@@ -22,7 +22,7 @@ compare proj: (section-start ("compare-" + proj)) && (section-end ("compare-" +
{{candelabra}} --manifest-path {{tests_manifest}} -p {{proj}} select --compare
@section-start NAME:
- echo -e "\e[0Ksection_start:`date +%s`:{{NAME}}\r\e[0K{{NAME}}"
+ echo -e "\e[0Ksection_start:`date +%s`:{{replace(NAME, ":", "-")}}\r\e[0K{{NAME}}"
@section-end NAME:
- echo -e "\e[0Ksection_end:`date +%s`:{{NAME}}\r\e[0K"
+ echo -e "\e[0Ksection_end:`date +%s`:{{replace(NAME, ":", "-")}}\r\e[0K"