Build: Fix output directory
This commit is contained in:
parent
4e8a8f73c3
commit
05a7beb07c
2 changed files with 8 additions and 5 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
|
public/
|
||||||
|
|
||||||
# Created by https://www.gitignore.io/api/rust
|
# Created by https://www.gitignore.io/api/rust
|
||||||
# Edit at https://www.gitignore.io/?templates=rust
|
# Edit at https://www.gitignore.io/?templates=rust
|
||||||
|
|
12
build
12
build
|
@ -9,14 +9,14 @@ cd "$(dirname "$(readlink -f "$0")")";
|
||||||
project_name="pepperminty.wiki";
|
project_name="pepperminty.wiki";
|
||||||
|
|
||||||
# The path to the lantern build engine git submodule
|
# The path to the lantern build engine git submodule
|
||||||
lantern_path=".";
|
lantern_path="./lantern-build-engine";
|
||||||
|
|
||||||
###
|
###
|
||||||
# Custom Settings
|
# Custom Settings
|
||||||
###
|
###
|
||||||
|
|
||||||
# Put any custom settings here.
|
# Put any custom settings here.
|
||||||
zola="zola/target/release/zola";
|
zola="${PWD}/zola/target/release/zola";
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ if [[ "$#" -lt 1 ]]; then
|
||||||
echo -e "${CSECTION}Available actions${RS}";
|
echo -e "${CSECTION}Available actions${RS}";
|
||||||
echo -e " ${CACTION}setup${RS} - Perform initial setup";
|
echo -e " ${CACTION}setup${RS} - Perform initial setup";
|
||||||
echo -e " ${CACTION}build${RS} - Build the static site";
|
echo -e " ${CACTION}build${RS} - Build the static site";
|
||||||
echo -e " ${CACTION}watch${RS} - Start a livereload server";
|
echo -e " ${CACTION}serve${RS} - Start a livereload server";
|
||||||
echo -e "";
|
echo -e "";
|
||||||
|
|
||||||
exit 1;
|
exit 1;
|
||||||
|
@ -63,12 +63,14 @@ task_setup() {
|
||||||
|
|
||||||
task_build() {
|
task_build() {
|
||||||
task_begin "Building site";
|
task_begin "Building site";
|
||||||
"${zola}" build src;
|
cd src || { echo "Failed to cd into src"; exit 1; };
|
||||||
|
"${zola}" build --output-dir "../public";
|
||||||
task_end "$?";
|
task_end "$?";
|
||||||
}
|
}
|
||||||
task_serve() {
|
task_serve() {
|
||||||
task_begin "Building site";
|
task_begin "Building site";
|
||||||
"${zola}" serve src;
|
cd src || { echo "Failed to cd into src"; exit 1; };
|
||||||
|
"${zola}" serve --output-dir "../public";
|
||||||
task_end "$?";
|
task_end "$?";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue