13 lines
240 B
Bash
Executable file
13 lines
240 B
Bash
Executable file
#!/bin/bash
|
|
|
|
mkdir $BUILDDIR
|
|
mkdir $SOURCEDIR
|
|
|
|
source /usr/local/bin/functions.sh
|
|
|
|
echo "Downloading website"
|
|
get-and-unzip-website-data
|
|
echo "Building website"
|
|
build-and-extract-website
|
|
echo "Moving files"
|
|
move-website-files-to-target
|