mirror of
https://github.com/sharkdp/bat
synced 2026-07-25 17:21:43 +00:00
22 lines
649 B
Bash
Executable File
Vendored
22 lines
649 B
Bash
Executable File
Vendored
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
ASSET_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
# Ensure submodules are initialized.
|
|
git submodule init
|
|
git submodule update
|
|
|
|
# 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/222 has been fixed
|
|
JAVADOC_FILE="${ASSET_DIR}/syntaxes/Packages/Java/JavaDoc.sublime-syntax"
|
|
JAVADOC_PATCH="${ASSET_DIR}/JavaDoc.sublime-syntax.patch"
|
|
patch "$JAVADOC_FILE" "$JAVADOC_PATCH"
|
|
|
|
bat cache --build --blank --source="$ASSET_DIR" --target="$ASSET_DIR"
|
|
|
|
patch -R "$JAVADOC_FILE" "$JAVADOC_PATCH"
|