9 lines
130 B
Bash
Executable File
9 lines
130 B
Bash
Executable File
#! /bin/bash
|
|
|
|
set -eoux pipefail
|
|
|
|
HUGO_ROOT=`pwd`
|
|
|
|
cd "$HUGO_ROOT"
|
|
echo "Updating theme"
|
|
git submodule update --recursive --remote |