pepperminty-wiki-website/build

78 lines
2.0 KiB
Bash
Executable File

#!/usr/bin/env bash
# Make sure the current directory is the location of this script to simplify matters
cd "$(dirname "$(readlink -f "$0")")";
################
### Settings ###
################
# The name of this project
project_name="pepperminty.wiki";
# The path to the lantern build engine git submodule
lantern_path=".";
###
# Custom Settings
###
# Put any custom settings here.
zola="zola/target/release/zola";
###############################################################################
# Check out the lantern git submodule if needed
if [ ! -f "${lantern_path}/lantern.sh" ]; then git submodule update --init "${lantern_path}"; fi
source "${lantern_path}/lantern.sh";
if [[ "$#" -lt 1 ]]; then
echo -e "${FBLE}${project_name}${RS} build script";
echo -e " by Starbeamrainbowlabs";
echo -e "${LC}Powered by the lantern build engine, v${version}${RS}";
echo -e "";
echo -e "${CSECTION}Usage${RS}";
echo -e " ./build ${CTOKEN}{action}${RS} ${CTOKEN}{action}${RS} ${CTOKEN}{action}${RS} ...";
echo -e "";
echo -e "${CSECTION}Available actions${RS}";
echo -e " ${CACTION}setup${RS} - Perform initial setup";
echo -e " ${CACTION}build${RS} - Build the static site";
echo -e " ${CACTION}watch${RS} - Start a livereload server";
echo -e "";
exit 1;
fi
###############################################################################
task_setup() {
task_begin "Checking environment";
check_command git true;
check_command rustc true;
check_command cargo true;
task_end 0;
task_begin "Initialising submodules";
execute git submodule update --init;
task_end $?;
task_begin "Compiling zola";
cd zola || { echo "Failed to cd into zola"; exit 1; };
execute cargo build --release;
task_end "$?";
}
task_build() {
task_begin "Building site";
"${zola}" build src;
task_end "$?";
}
task_serve() {
task_begin "Building site";
"${zola}" serve src;
task_end "$?";
}
###############################################################################
tasks_run "$@";