You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
c4k-website/infrastructure/c4k-website-build/image/resources/entrypoint.sh

51 lines
1.0 KiB
Bash

#!/bin/bash
mkdir $BUILDDIR
mkdir $SOURCEDIR
set -o nounset
set -o xtrace
set -o errexit
set -eo pipefail
source /usr/local/bin/functions.sh
filename="website.zip"
hashfilename="hashfile"
# download website data
# check if hashfile exists
# if yes
# hash the current file
# compare current hash to hashfile
# same?
# do nothing
# not same?
# overwrite hashfile with new hash
# start the website build
# if not
# hash the current file
# write the hashfile
# start the build
echo "Downloading website data"
get-website-data filename
echo "Check for new content"
if [[ -f $hashfile ]]
then
currentHash=$( sha256sum $SOURCEDIR/$filename | cut -d " " -f 1 > ~/$2 ) #ToDo: output of sh256sum without path to file?
else
write-hashfile $filename $hashfilename
fi
echo "Executing Custom Scripts, if applicable"
execute-scripts-when-existing
echo "Building website"
build-and-extract-website
echo "Moving files"
move-website-files-to-target