From 70f4d4908de10239b4774210a0e720b7df3b32f9 Mon Sep 17 00:00:00 2001 From: Frank Taillandier Date: Sat, 7 Jul 2018 13:01:41 +0200 Subject: [PATCH] Fix: Escape Liquid --- docs/_docs/continuous-integration/circleci.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/_docs/continuous-integration/circleci.md b/docs/_docs/continuous-integration/circleci.md index baf5f78e..ce58a009 100644 --- a/docs/_docs/continuous-integration/circleci.md +++ b/docs/_docs/continuous-integration/circleci.md @@ -100,7 +100,7 @@ jobs: - checkout - restore_cache: keys: - - rubygems-v1-{{ checksum "Gemfile.lock" }} + - rubygems-v1-{% raw %}{{ checksum "Gemfile.lock" }}{% endraw %} - rubygems-v1-fallback - run: name: Bundle Install @@ -114,7 +114,7 @@ jobs: --check-html \ --disable-external - save_cache: - key: rubygems-v1-{{ checksum "Gemfile.lock" }} + key: rubygems-v1-{% raw %}{{ checksum "Gemfile.lock" }}{% endraw %} paths: - vendor/bundle - run: