Skip to content

Commit 8c7a158

Browse files
committed
Remove single quotes. Seem not to be needed.
1 parent ef68d8e commit 8c7a158

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

BuildTasks/PublishExtension/v4/vsixeditor.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ export class VSIXEditor {
154154
zip.arg("-d"); // redirect output to
155155
zip.arg(tmpPath); // output directory
156156
zip.arg(vsix); // file to extract
157-
zip.arg("'*/task.json'");
158-
zip.arg("'*/task.loc.json'");
157+
zip.arg("*/task.json");
158+
zip.arg("*/task.loc.json");
159159
zip.arg("extension.vsixmanifest");
160160
zip.arg("extension.vsomanifest");
161161
}

0 commit comments

Comments
 (0)