浏览代码

Revert "Makefile: Always use ssh access to clone repository"

This reverts commit e0b7a0bf92.
pull/5/head
10sr 9 年前
父节点
当前提交
5505f01b4a
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. +6
    -0
      Makefile

+ 6
- 0
Makefile 查看文件

@@ -7,8 +7,14 @@ home ?= $(HOME)

dotfiles_url_base := https://raw.githubusercontent.com/10sr/dotfiles/master
use_git ?= t
git_auth ?= t

ifneq (,$(git_auth))
dotfiles_git := git@github.com:10sr/dotfiles.git
else
$(warning 'git_auth' is empty. Use public read-only git repository.)
dotfiles_git := http://github.com/10sr/dotfiles.git
endif

current_origin_url := $(shell git config remote.origin.url)



正在加载...
取消
保存