🚑 Use https instead of git protocol to fetch sources (#404)

This commit is contained in:
Franck Nijhof 2022-03-22 21:15:46 +01:00 committed by GitHub
parent e4bd525da3
commit de835ce655
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -90,13 +90,13 @@ RUN \
&& chmod a+x /usr/bin/ha \ && chmod a+x /usr/bin/ha \
\ \
&& git clone --branch master --single-branch --depth 1 \ && git clone --branch master --single-branch --depth 1 \
"git://github.com/robbyrussell/oh-my-zsh.git" ~/.oh-my-zsh \ "https://github.com/robbyrussell/oh-my-zsh.git" ~/.oh-my-zsh \
\ \
&& git clone --branch master --single-branch --depth 1 \ && git clone --branch master --single-branch --depth 1 \
"git://github.com/zsh-users/zsh-autosuggestions" \ "https://github.com/zsh-users/zsh-autosuggestions" \
~/.oh-my-zsh/custom/plugins/zsh-autosuggestions \ ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions \
&& git clone --branch master --single-branch --depth 1 \ && git clone --branch master --single-branch --depth 1 \
"git://github.com/zsh-users/zsh-syntax-highlighting.git" \ "https://github.com/zsh-users/zsh-syntax-highlighting.git" \
~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting \ ~/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting \
\ \
&& sed -i -e "s#bin/bash#bin/zsh#" /etc/passwd \ && sed -i -e "s#bin/bash#bin/zsh#" /etc/passwd \