Skip to content

Commit

Permalink
💄
Browse files Browse the repository at this point in the history
  • Loading branch information
benibenj authored and luxass committed Dec 15, 2024
1 parent 6e6d580 commit b305cd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1800,7 +1800,7 @@ export function collect(manifest: ManifestPackage, options: IPackageOptions = {}
});
}

export function writeVsix(files: IFile[], packagePath: string): Promise<void> {
function writeVsix(files: IFile[], packagePath: string): Promise<void> {
return fs.promises
.unlink(packagePath)
.catch(err => (err.code !== 'ENOENT' ? Promise.reject(err) : Promise.resolve(null)))
Expand Down

0 comments on commit b305cd5

Please sign in to comment.