File: proof

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 (35 lines) | stat: -rwxr-xr-x 650 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env bash
#
# Usage:
#   script/proof

set -e

function msg {
  printf "\e[0;37m==> $1\e[0m\n"
}

IGNORE_HREFS=$(ruby -e 'puts %w{
  Chrononaut
  twitter.com
  nearlyfreespeech.net
  eduardoboucas.com
  github.com\/matrix9180
}.map{|h| "/#{h}/"}.join(",")')
SOURCE="docs"
DESTINATION="_site"

export PROOF=true
export NOKOGIRI_USE_SYSTEM_LIBRARIES=true

# 1.
msg "Installing..."
bundle install -j8 > /dev/null || bundle install > /dev/null

# 2.
msg "Building..."
bundle exec jekyll build -s $SOURCE -d $DESTINATION --trace

# 3.
msg "Proofing..."
time bundle exec htmlproofer ./$DESTINATION --allow-hash-href --url-ignore $IGNORE_HREFS $@