Skip to content

Commit b621477

Browse files
committed
Support multiword add-in names
1 parent fd51ac3 commit b621477

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
@@ -241,7 +241,7 @@ if (projectName) {
241241
}
242242

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

0 commit comments

Comments
 (0)