Skip to content

Commit 12bd3c8

Browse files
authored
Merge pull request #258 from OfficeDev/multiword-names
Update conversion script to support multiword add-in names
2 parents 66e0ed1 + 9381245 commit 12bd3c8

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)