mirror of
https://github.com/danog/gojekyll.git
synced 2024-11-27 03:24:40 +01:00
8 lines
187 B
Bash
Executable File
8 lines
187 B
Bash
Executable File
#!/bin/bash -eu
|
|
|
|
ddir=/tmp/$USER/gojekyll-compare
|
|
|
|
./scripts/gojekyll build -s $1 -d $ddir/$1.go
|
|
(cd $1 && bundle exec jekyll build -d $ddir/$1.jekyll)
|
|
ksdiff $ddir/$1.jekyll $ddir/$1.go
|