mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-rest-api-docs.git
synced 2026-04-23 04:32:16 +08:00
5 lines
191 B
Bash
Executable file
5 lines
191 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -o errexit # Abort if any command fails
|
|
|
|
rm -rf build
|
|
docker run --rm --name slate -v $(pwd)/build:/srv/slate/build -v $(pwd)/source:/srv/slate/source slatedocs/slate
|