Skip to content

Commit d318d17

Browse files
committed
full diff
1 parent 3fc15a2 commit d318d17

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

internal/argocd_executor.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,10 +265,11 @@ func diffApp(action DiffAction, timeout string, appClient application.Applicatio
265265
target = item.target
266266
}
267267

268-
diff, err = GetDiff(live, target)
268+
newDiff, err := GetDiff(live, target)
269269
if err != nil {
270270
return "", fmt.Errorf("failed to get diff: %w", err)
271271
}
272+
diff += newDiff
272273
}
273274
}
274275

0 commit comments

Comments
 (0)