From a062f41902ae6b81770314faa68c5c8580bcbcd0 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Thu, 16 Mar 2023 18:48:13 +0100 Subject: [PATCH] Create directory for git extensions --- scripts/Software/Collections/personal.sh | 2 +- scripts/Software/{git-flow/install.sh => git/flow.sh} | 0 scripts/Software/git/install.sh | 4 ++++ 3 files changed, 5 insertions(+), 1 deletion(-) rename scripts/Software/{git-flow/install.sh => git/flow.sh} (100%) create mode 100755 scripts/Software/git/install.sh diff --git a/scripts/Software/Collections/personal.sh b/scripts/Software/Collections/personal.sh index 51106abb..874599af 100755 --- a/scripts/Software/Collections/personal.sh +++ b/scripts/Software/Collections/personal.sh @@ -17,7 +17,7 @@ source "$softwareRoot/Brave/install-extensions.sh"; source "$softwareRoot/Google Chrome/install.sh"; # Install further software -source "$softwareRoot/git-flow/install.sh"; +source "$softwareRoot/git/install.sh"; source "$softwareRoot/logo-ls/install.sh"; source "$softwareRoot/VSCodium/install.sh"; source "$softwareRoot/Visual Studio Code/install.sh"; diff --git a/scripts/Software/git-flow/install.sh b/scripts/Software/git/flow.sh similarity index 100% rename from scripts/Software/git-flow/install.sh rename to scripts/Software/git/flow.sh diff --git a/scripts/Software/git/install.sh b/scripts/Software/git/install.sh new file mode 100755 index 00000000..5b59b62b --- /dev/null +++ b/scripts/Software/git/install.sh @@ -0,0 +1,4 @@ +#!/bin/bash +pushd "${BASH_SOURCE%/*}"; +source "./flow.sh"; +popd;