소스 검색

Update tfkit.mk

Alois Mahdal 9 년 전
부모
커밋
3e6f602a14
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. 5
    1
      tfkit.mk

+ 5
- 1
tfkit.mk 파일 보기

@@ -5,6 +5,9 @@
5 5
 #
6 6
 # Adds targets: test to run tfkit tests, tfkit to deploy tfkit, tfkit_update to
7 7
 # pull tfkit updates, and tfkit_delete to remove the tfkit code.
8
+#
9
+# NOTE: Do not edit this file in your project directory as it will overwrite
10
+#       itself when you call tfkit_update!!!
8 11
 
9 12
 
10 13
 test: tfkit
@@ -48,6 +51,7 @@ bin/tfkit_init:
48 51
 
49 52
 tfkit_update: tfkit
50 53
 	@cd tfkit
51
-	@git --git-dir tfkit/.git pull
54
+	@git -C tfkit pull
55
+	@cp tfkit/tfkit.mk .
52 56
 
53 57
 .PHONY: test