소스 검색

Detect repository properly

pull/5/head
10sr 9 년 전
부모
커밋
435ae3e244
1개의 변경된 파일6개의 추가작업 그리고 3개의 파일을 삭제
  1. +6
    -3
      Makefile

+ 6
- 3
Makefile 파일 보기

@@ -9,16 +9,19 @@ dotfiles_url_base := https://raw.githubusercontent.com/10sr/dotfiles/master
use_git ?= t
git_auth ?= t

dotfiles_git_path := 10sr/dotfiles.git

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


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

ifeq ($(current_origin_url), $(dotfiles_git))
ifneq (,$(findstring $(dotfiles_git_path),$(current_origin_url)))
$(warning Currently in dotfiles repository)
dotfiles_dir := $(PWD)
else


불러오는 중...
취소
저장