From 785103c09803ee1ede0ce57d40a139a28752bbab Mon Sep 17 00:00:00 2001 From: Brian Zalewski <59970525+ProfessorManhattan@users.noreply.github.com> Date: Thu, 1 Jun 2023 02:15:55 +0000 Subject: [PATCH] Updating provision script to point to GitHub --- scripts/provision.sh | 2 +- scripts/src/provision.sh.tmpl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/provision.sh b/scripts/provision.sh index d7543a9a..dea52adb 100644 --- a/scripts/provision.sh +++ b/scripts/provision.sh @@ -324,7 +324,7 @@ fi # @description Ensure the ${XDG_DATA_HOME:-$HOME/.local/share}/chezmoi directory is cloned and up-to-date if [ -d "${XDG_DATA_HOME:-$HOME/.local/share}/chezmoi/.git" ]; then cd "${XDG_DATA_HOME:-$HOME/.local/share}/chezmoi" - logg info "Pulling the latest changes from ${START_REPO:-https://gitlab.com/megabyte-labs/install.doctor.git}" + logg info "Pulling the latest changes from ${START_REPO:-https://github.com/megabyte-labs/install.doctor.git}" git pull origin master else logg info "Cloning ${START_REPO} to ${XDG_DATA_HOME:-$HOME/.local/share}/chezmoi" diff --git a/scripts/src/provision.sh.tmpl b/scripts/src/provision.sh.tmpl index 3620d516..8a09cc78 100644 --- a/scripts/src/provision.sh.tmpl +++ b/scripts/src/provision.sh.tmpl @@ -56,7 +56,7 @@ export DEBIAN_FRONTEND=noninteractive # @description Detect `START_REPO` format and determine appropriate git address, otherwise use the master Install Doctor branch if [ -z "$START_REPO" ] && [ -z "$REPO" ]; then - START_REPO="https://gitlab.com/megabyte-labs/install.doctor.git" + START_REPO="https://github.com/megabyte-labs/install.doctor.git" else if [ -n "$REPO" ] && [ -z "$START_REPO" ]; then START_REPO="$REPO" @@ -205,7 +205,7 @@ fi # @description Ensure the ${XDG_DATA_HOME:-$HOME/.local/share}/chezmoi directory is cloned and up-to-date if [ -d "${XDG_DATA_HOME:-$HOME/.local/share}/chezmoi/.git" ]; then cd "${XDG_DATA_HOME:-$HOME/.local/share}/chezmoi" - logg info "Pulling the latest changes from ${START_REPO:-https://gitlab.com/megabyte-labs/install.doctor.git}" + logg info "Pulling the latest changes from ${START_REPO:-https://github.com/megabyte-labs/install.doctor.git}" git pull origin master else logg info "Cloning ${START_REPO} to ${XDG_DATA_HOME:-$HOME/.local/share}/chezmoi"