2018-05-16 21:22:16 +02:00
|
|
|
#!/bin/bash
|
2019-02-02 11:19:11 +01:00
|
|
|
set -euo pipefail
|
2018-04-30 15:41:30 +02:00
|
|
|
|
2018-05-16 21:22:16 +02:00
|
|
|
ASSET_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
2018-04-30 15:41:30 +02:00
|
|
|
|
2018-10-10 21:49:03 +02:00
|
|
|
# Always remove the local cache to avoid any confusion
|
|
|
|
bat cache --clear
|
|
|
|
|
2018-10-04 10:16:53 +02:00
|
|
|
# TODO: Remove this (and the reverse part below) when
|
2018-11-11 10:14:18 +01:00
|
|
|
# https://github.com/trishume/syntect/issues/222 has been fixed
|
2018-10-04 10:16:53 +02:00
|
|
|
JAVADOC_FILE="${ASSET_DIR}/syntaxes/Packages/Java/JavaDoc.sublime-syntax"
|
|
|
|
JAVADOC_PATCH="${ASSET_DIR}/JavaDoc.sublime-syntax.patch"
|
|
|
|
patch "$JAVADOC_FILE" "$JAVADOC_PATCH"
|
|
|
|
|
2019-02-07 22:31:37 +01:00
|
|
|
bat cache --build --blank --source="$ASSET_DIR" --target="$ASSET_DIR"
|
2018-10-04 10:16:53 +02:00
|
|
|
|
|
|
|
patch -R "$JAVADOC_FILE" "$JAVADOC_PATCH"
|