32 lines
727 B
Bash
Executable file
32 lines
727 B
Bash
Executable file
#!/bin/bash
|
|
|
|
mkdir $BUILD_DIR
|
|
mkdir $SOURCE_DIR
|
|
|
|
set -euo pipefail
|
|
|
|
source /usr/local/bin/functions.sh
|
|
|
|
filename="website.zip"
|
|
hashfilename="hashfile"
|
|
|
|
echo "Check for new content"
|
|
touch $HASHFILE_DIR/$hashfilename
|
|
currentHash=$( cat $HASHFILE_DIR/$hashfilename )
|
|
newHash=$( get-hash-data )
|
|
|
|
if [[ $currentHash == $newHash ]]
|
|
then
|
|
echo "Nothing to do"
|
|
else
|
|
echo $currentHash > $HASHFILE_DIR/$hashfilename
|
|
echo "Generate .netrc file"
|
|
generate-netrc-file
|
|
echo "Downloading website data"
|
|
get-website-data $filename
|
|
unzip-website-data $filename
|
|
echo "Building website"
|
|
build-website
|
|
echo "Moving files"
|
|
move-website-files-to-target
|
|
fi
|