From 95c4b979c59ab34bdf6a676092113daa262bc932 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Tue, 8 Feb 2022 01:38:59 -0300 Subject: [PATCH] Refactor --- scripts/update.sh | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/scripts/update.sh b/scripts/update.sh index 0cff857..69c442b 100755 --- a/scripts/update.sh +++ b/scripts/update.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bash -runScript() { +updateSubmodules() { git submodule update --remote --merge gitStatus=$(git status --porcelain) grep -q "sadedot" <(echo "$gitStatus") || return @@ -8,4 +8,14 @@ runScript() { git push } +runScript() { + lastFolder=$(pwd -P) + sadedotParentFolder=$(pwd -P | awk '{ sub(/\/sadedot.*/, ""); print }') + cd "$sadedotParentFolder" || { echo "Couldn't cd into '$sadedotParentFolder'." 1>&2 && exit 1; } + + updateSubmodules + + cd "$lastFolder" || { echo "Couldn't cd into '$lastFolder'." 1>&2 && exit 1; } +} + runScript \ No newline at end of file