Skip to content

Commit bcc4013

Browse files
authored
Merge pull request #125 from OfficeDev/multiword-names
Support multiword add-in names
2 parents fd51ac3 + b621477 commit bcc4013

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)