Skip to content

Commit 9381245

Browse files
committed
Update conversion script to support multiword add-in names
1 parent 66e0ed1 commit 9381245

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

convertToSingleHost.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ if (projectName) {
279279
}
280280

281281
// Modify the manifest to include the name and id of the project
282-
const cmdLine = `npx office-addin-manifest modify ${manifestPath} -g ${appId} -d ${projectName}`;
282+
const cmdLine = `npx office-addin-manifest modify ${manifestPath} -g ${appId} -d "${projectName}"`;
283283
childProcess.exec(cmdLine, (error, stdout) => {
284284
if (error) {
285285
console.error(`Error updating the manifest: ${error}`);

0 commit comments

Comments
 (0)