From 07182881d3ab5f645c02eb3e732e669d09c2f610 Mon Sep 17 00:00:00 2001 From: Marty Oehme Date: Sat, 16 Feb 2019 18:54:52 +0000 Subject: [PATCH] Update .zgenrc to git clone via https SSH cloning fails on some machines, leading the whole install process to fail. --- .zgenrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zgenrc b/.zgenrc index ae2679d..f664a42 100644 --- a/.zgenrc +++ b/.zgenrc @@ -7,7 +7,7 @@ if [[ ! -f $ZGEN_PARENT_DIR/.zgen/zgen.zsh ]]; then mkdir -p "$ZGEN_PARENT_DIR" fi pushd $ZGEN_PARENT_DIR - git clone git@github.com:tarjoilija/zgen.git ./.zgen + git clone https://github.com/tarjoilija/zgen.git ./.zgen popd fi source $ZGEN_PARENT_DIR/.zgen/zgen.zsh