mirror of
https://github.com/Homebrew/brew.git
synced 2026-08-12 22:29:27 +04:00
- 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.
17 lines
416 B
Bash
Executable File
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 "$@"
|