From e9b6461c4ab3b2da4e6278989152eb13c9b77c9c Mon Sep 17 00:00:00 2001 From: Facinorous Date: Thu, 5 Nov 2020 19:44:49 -0500 Subject: [PATCH] Fix group creation scripts --- setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup b/setup index b22cab8..d19ae81 100644 --- a/setup +++ b/setup @@ -382,7 +382,7 @@ cat > creategroups <<'EOF' for group in "${groupArray[@]}"; do echo "Creating all groups" - ~/$projectLocation/mirrormanagement/$group/create_group.sh + (cd ~/$projectLocation/mirrormanagement/$group && ./create_group.sh) done EOF