From ceace45bed1cb74a45e4e61e65cc6d190c4f36ac Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 1 Sep 2023 15:42:27 -0400 Subject: [PATCH] Include pvc-installer in create repo update script --- create-local-repo.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/create-local-repo.sh b/create-local-repo.sh index 78194aa..2d7a116 100755 --- a/create-local-repo.sh +++ b/create-local-repo.sh @@ -40,7 +40,13 @@ set -o errexit pushd pvc-ansible git pull --rebase popd -git add pvc-ansible && git commit -m "Update pvc-ansible from upstream" + +pushd pvc-installer +git pull --rebase +popd + +git add pvc-ansible pvc-installer +git commit -m "Update submodules from upstream" EOF chmod +x update-remote.sh @@ -56,6 +62,7 @@ echo -e "* You no longer need this copy of the repository and may delete it." echo -e "* You may edit the initial commit message and author details with the command:" echo -e " git commit --amend" echo -e " inside the new repository." +echo -e "* You will need to add a 'git remote' in order to push the new repository." echo -e "* A copy of the file 'pvc.yml' has been made there, as well as your own 'roles/'" echo -e " directory, so you may add your own roles and customizations to these files" echo -e " if you so desire."