From f90f0027b0dc7ee0e22124128ba75ec9e71bfe63 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 8 Feb 2022 01:15:27 -0300 Subject: [PATCH] Refactor update.sh --- scripts/update.sh | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/scripts/update.sh b/scripts/update.sh index 24a37be..0cff857 100755 --- a/scripts/update.sh +++ b/scripts/update.sh @@ -1,7 +1,11 @@ #!/usr/bin/env bash -git submodule update --remote --merge -gitStatus=$(git status --porcelain) -grep -q "sadedot" <(echo "$gitStatus") || return -git commit -m "Update sadedot submodule" sadedot -git push +runScript() { + git submodule update --remote --merge + gitStatus=$(git status --porcelain) + grep -q "sadedot" <(echo "$gitStatus") || return + git commit -m "Update sadedot submodule" sadedot + git push +} + +runScript \ No newline at end of file