From 3c2d07352dc74b9c44d17fa446c14cfd64ae0e02 Mon Sep 17 00:00:00 2001 From: William Floyd Date: Fri, 13 Mar 2020 08:04:46 +0100 Subject: [PATCH] update: Fix pulling. --- update.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/update.sh b/update.sh index 66aef3d..2da3b39 100755 --- a/update.sh +++ b/update.sh @@ -1,13 +1,11 @@ #!/bin/bash -git pull +git pull --recurse-submodules if [ -d './static/images/generated/' ]; then rm -r './static/images/generated/' fi -git submodule update --remote --merge - find src -iname '*.sh' | while read -r __file; do time ./${__file} "$(dirname "${__file}")/" done