Files
brew/docs/bin/jekyll
Mike McQuaid cf47983e13 Remove docs remote theme usage
- Avoid `jekyll-remote-theme` so docs builds use local shared files.
- Reference canonical `brew.sh` theme assets instead of copying them here.
- Keep only the layouts and includes needed by the docs site.
- Point shared docs page images at `brew.sh` for HTML-Proofer.
- Render the install demo GIF at retina size in the README.
2026-06-08 11:59:00 +01:00

17 lines
416 B
Bash
Executable File

#!/usr/bin/env bash
# This file was adapted from a Bundler-generated binstub.
# The application 'jekyll' is installed as part of a gem, and
# this file is here to facilitate running it.
set -euo pipefail
if [[ "${HOMEBREW_INSIDE_BUNDLE:-}" != "1" ]]; then
export HOMEBREW_NO_AUTO_UPDATE=1
eval "$(brew bundle --check --install env)"
fi
export JEKYLL_ENV="${JEKYLL_ENV:-development}"
bundle exec jekyll "$@"