diff --git a/scripts/Common/Config/UserProfile/personal.sh b/scripts/Common/Config/UserProfile/personal.sh index 9a0857713..b2671053a 100755 --- a/scripts/Common/Config/UserProfile/personal.sh +++ b/scripts/Common/Config/UserProfile/personal.sh @@ -29,10 +29,5 @@ then source "../Fonts/MicrosoftFonts/install.sh"; fi; -# Git Config -source "../git/setup/install.sh"; -source "../git/flow/install.sh"; - -# Troll Stuff -source "../git/git-auf-deutsch/install.sh"; +source "../git/install.sh"; popd > /dev/null; diff --git a/scripts/Common/Config/git/install.sh b/scripts/Common/Config/git/install.sh new file mode 100755 index 000000000..904b0cc8e --- /dev/null +++ b/scripts/Common/Config/git/install.sh @@ -0,0 +1,9 @@ +#!/bin/bash +pushd "${BASH_SOURCE%/*}" > /dev/null; + +# Git Config +source "./setup/install.sh"; +source "./flow/install.sh"; + +# Troll Stuff +source "./git-auf-deutsch/install.sh";