From 435ae3e244826624dbd6a2f339e9224153cc169a Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Wed, 11 Feb 2015 13:07:58 +0900 Subject: [PATCH] Detect repository properly --- Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 33da317..e2e09bd 100644 --- a/Makefile +++ b/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