Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/config/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ func GetChangedClusterProfiles(path, baseRev string) ([]string, error) {
func getRevChanges(root, path, base string) ([]string, error) {
// Sample output (with abbreviated hashes) from git-diff-tree(1):
// :100644 100644 bcd1234 0123456 M file0
cmd := []string{"diff-tree", "-r", "--diff-filter=ABCMRTUX", base + ":" + path, "HEAD:" + path}
cmd := []string{"diff-tree", "-r", "--diff-filter=d", base + ":" + path, "HEAD:" + path}
diff, err := git(root, cmd...)
if err != nil || diff == "" {
return nil, err
Expand Down