Browse Source

Replaing hardcoded cakephp org with $(OWNER) in makefile

Jose Lorenzo Rodriguez 11 years ago
parent
commit
d8af65d535
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Makefile

+ 1 - 1
Makefile

@@ -166,7 +166,7 @@ components-tag: $(foreach component, $(COMPONENTS), tag-component-$(component))
 
 component-%:
 	git checkout $(CURRENT_BRANCH) > /dev/null
-	- (git remote add $* git@github.com:cakephp/$*.git -f 2> /dev/null)
+	- (git remote add $* git@github.com:$(OWNER)/$*.git -f 2> /dev/null)
 	- (git branch -D $* 2> /dev/null)
 	git checkout -b $*
 	git filter-branch --prune-empty --subdirectory-filter src/$(shell php -r "echo ucfirst('$*');") -f $*