Unverified Commit b87a31b7 authored by anarcat's avatar anarcat
Browse files

fix another syntax error in YAML

colons are a pain in the back in YAML, but it seems like the "Block
Scaler Style" works around the problem.
parent d61be5e1
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -54,7 +54,8 @@ testall:
  script:
    - echo 'this is important to get the return value of mdl, not grep'
    - set -o pipefail
    - mdl . | ( grep -v "Kramdown Warning: No link definition for link ID '\[?_toc_\]?' found on line" || true )
    - |
      mdl . | ( grep -v "Kramdown Warning: No link definition for link ID '\[?_toc_\]?' found on line" || true )
  # this could be turned into allow_failures:exit_codes 2 when
  # everything but [[_toc_]] is fixed (because that will never be)
  allow_failure: true