5 lines
73 B
Bash
Executable file
5 lines
73 B
Bash
Executable file
#!/bin/bash
|
|
set -ex
|
|
pushd docs
|
|
compose run --rm jekyll jekyll build
|
|
popd
|