16 lines
395 B
Bash
Executable file
16 lines
395 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# This script is executed by make in the parent directory
|
|
|
|
[ "$HOSTNAME" != lime2 ] || exit 1
|
|
|
|
if [ "$VERBOSE" = true ]; then
|
|
echo "Updating index.html"
|
|
fi
|
|
|
|
chmod 644 ./index.html
|
|
|
|
awk -v header="$(<./header.html)" '{sub(/===HEADER===/,header)} 1' ./index.template.html |
|
|
awk -v footer="$(<./footer.html)" '{sub(/===FOOTER===/,footer)} 1' > ./index.html
|
|
|
|
chmod 444 ./index.html
|