grunt task 변경

- 변경된 파일을 추출할 때 삭제된 파일을 제외
This commit is contained in:
bnu 2015-01-05 15:11:19 +09:00
parent 9fc7cc1a41
commit 72ad1fd3c4

View file

@ -324,7 +324,7 @@ module.exports = function(grunt) {
// changed
grunt.util.spawn({
cmd: "git",
args: ['diff', '--name-only', target]
args: ['diff', '--name-only', '--diff-filter' ,'ACM', target]
}, function (error, result, code) {
diff = result.stdout;