mirror of
https://github.com/Smaug123/static-site-pipeline
synced 2025-10-05 00:08:40 +00:00
8 lines
171 B
Bash
Executable File
8 lines
171 B
Bash
Executable File
#!/bin/sh
|
|
|
|
SOURCE_DIR=$(readlink -f "$1")
|
|
OUTPUT_DIR=$(readlink -f "$2")
|
|
|
|
rm -rf "${OUTPUT_DIR:?}/*" &&
|
|
hugo --minify --source "$SOURCE_DIR" --destination "$OUTPUT_DIR"
|