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