From d2d01b9fe8d0e5f46534731933a26a5174b2320b Mon Sep 17 00:00:00 2001 From: sharkdp Date: Wed, 10 Oct 2018 21:49:03 +0200 Subject: [PATCH] Always remove the local cache when creating new assets --- assets/create.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/assets/create.sh b/assets/create.sh index aaa72769..8b35f887 100755 --- a/assets/create.sh +++ b/assets/create.sh @@ -2,6 +2,9 @@ ASSET_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +# Always remove the local cache to avoid any confusion +bat cache --clear + # TODO: Remove this (and the reverse part below) when # https://github.com/trishume/syntect/issues/160 has been fixed JAVADOC_FILE="${ASSET_DIR}/syntaxes/Packages/Java/JavaDoc.sublime-syntax"