#!/bin/bash set -eu fetch () { git clean -fdx git fetch # reset to updated upstream branch, but only if we're tracking a branch branch=$(git rev-parse --abbrev-ref --symbolic-full-name @{u} 2>/dev/null || echo head) git reset --hard "$branch" } cd $HOME/docs-landing/ fetch git submodule update --force --init # No compilation needed so far. mkdir -p $HOME/build/docs-landing/ cp -t $HOME/build/docs-landing/ *.{html,css,svg}