Skip to content

Commit

Permalink
update mistake printing assetFolders ops instead collections
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanKiral committed Sep 9, 2024
1 parent 9e6e714 commit c685ba9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/sync/printDiff.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const printDiff = (diffModel: DiffModel, logOptions: LogOptions) => {
}

if (diffModel.collections.length) {
diffModel.assetFolders.forEach(op => printPatchOperation(op, logOptions));
diffModel.collections.forEach(op => printPatchOperation(op, logOptions));
} else {
logInfo(logOptions, "standard", "No collections to update.");
}
Expand Down

0 comments on commit c685ba9

Please sign in to comment.