Add secondary Infra repo path to Infra command

This commit is contained in:
Christer Warén 2024-11-23 06:45:00 +02:00
parent 42239ef54d
commit af617ef68c
2 changed files with 16 additions and 4 deletions

View File

@ -5,10 +5,16 @@ wx-infra(){
wx-header "Infra"
wx-restricted
INFRA_PATH="/home/cwchristerw/Desktop/Work in Progress/Programming/warengroup/infra"
case $USERNAME in
cwchristerw)
if [[ -d "/home/cwchristerw/Desktop/Work in Progress/Programming/warengroup/infra" ]]
then
INFRA_PATH="/home/cwchristerw/Desktop/Work in Progress/Programming/warengroup/infra"
else
INFRA_PATH="~/.warengroup/infra"
git clone https://git.waren.io/warengroup-private/infra --config core.sshCommand="ssh -i ~/.ssh/keys/warengroup-legacy" "$INFRA_PATH"
fi
if [[ -z $1 ]]
then
echo "Tag Required"

10
wx
View File

@ -138,10 +138,16 @@ wx-infra(){
wx-header "Infra"
wx-restricted
INFRA_PATH="/home/cwchristerw/Desktop/Work in Progress/Programming/warengroup/infra"
case $USERNAME in
cwchristerw)
if [[ -d "/home/cwchristerw/Desktop/Work in Progress/Programming/warengroup/infra" ]]
then
INFRA_PATH="/home/cwchristerw/Desktop/Work in Progress/Programming/warengroup/infra"
else
INFRA_PATH="~/.warengroup/infra"
git clone https://git.waren.io/warengroup-private/infra --config core.sshCommand="ssh -i ~/.ssh/keys/warengroup-legacy" "$INFRA_PATH"
fi
if [[ -z $1 ]]
then
echo "Tag Required"