File: default-site

package info (click to toggle)
jekyll 4.4.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,488 kB
  • sloc: ruby: 16,736; javascript: 1,455; sh: 216; xml: 29; makefile: 9
file content (23 lines) | stat: -rwxr-xr-x 765 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env bash
# Runs the `jekyll new` command and builds the default site as a sanity check
# Additional flags for `jekyll new` may be passed to this script.

set -e

TMP_SOURCE="tmp/default-site"

echo "$0: setting up tmp directory"
mkdir -p ./tmp
rm -Rf "./$TMP_SOURCE"

echo "$0: creating new default site"
bundle exec jekyll new "$TMP_SOURCE" "$@"
pushd "$TMP_SOURCE"

echo "$0: respecifying the jekyll install location"
ruby -e "contents = File.read('Gemfile'); File.write('Gemfile', contents.sub(/gem \"jekyll\".*\\n/, 'gem \"jekyll\", path: \"../../\"'))"
echo "$0: installing default site dependencies"
BUNDLE_GEMFILE=Gemfile bundle install
echo "$0: building the default site"
BUNDLE_GEMFILE=Gemfile bundle exec jekyll build --verbose --profile
popd