From 7a19cd219abcea59880f65512264e81c182832ce Mon Sep 17 00:00:00 2001 From: Anish Athalye Date: Thu, 24 May 2018 10:30:24 -0400 Subject: Point PyYAML dependency to official repository Previously, PyYAML was hosted on BitBucket, so we had a mirror of the repo on GitHub. Now, official hosting has moved to GitHub, so we can point to the official repository instead. Thanks to Marco A. Feliu for pointing this out. This patch also updates the install shim to update submodule URLs. To preserve the functionality of earlier Dotbot versions, we will need to maintain 'https://github.com/anishathalye/pyyaml'. Because old versions of the install shim used with new Dotbot versions will not update submodule URLs, we will need to keep the old repository in sync with the upstream repository as we upgrade PyYAML versions. This patch also upgrades the dependency to PyYAML 3.12. --- tools/git-submodule/install | 1 + 1 file changed, 1 insertion(+) (limited to 'tools') diff --git a/tools/git-submodule/install b/tools/git-submodule/install index b1baa33..f11b48b 100755 --- a/tools/git-submodule/install +++ b/tools/git-submodule/install @@ -9,6 +9,7 @@ DOTBOT_BIN="bin/dotbot" BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" cd "${BASEDIR}" +git -C "${DOTBOT_DIR}" submodule sync --recursive git submodule update --init --recursive "${DOTBOT_DIR}" "${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${CONFIG}" "${@}" -- cgit v1.2.3