Skip to content

Commit

Permalink
I think this fixes the iterable warning
Browse files Browse the repository at this point in the history
as no longer spreading a non-array

Signed-off-by: Edmund Reinhardt <[email protected]>
  • Loading branch information
edmundreinhardt committed Jan 25, 2024
1 parent f61549e commit 9fd807c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/projectExplorer/source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export default class Source extends TreeItem implements ProjectExplorerTreeItem
const deployFiles: Uri[] = [];
switch (this.deploymentParameters.method) {
case 'compare':
deployFiles.push(...await deployTools.getDeployCompareFiles(this.deploymentParameters));
deployFiles.push(...(await deployTools.getDeployCompareFiles(this.deploymentParameters)).uploads);
break;
case 'changed':
deployFiles.push(...await deployTools.getDeployChangedFiles(this.deploymentParameters));
Expand Down

0 comments on commit 9fd807c

Please sign in to comment.