From b621477dbfaae786c63c93b0ad660a5a502f5a29 Mon Sep 17 00:00:00 2001 From: Rick Kirkham Date: Thu, 25 Apr 2024 16:49:09 -0700 Subject: [PATCH] Support multiword add-in names --- convertToSingleHost.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convertToSingleHost.js b/convertToSingleHost.js index 227888b..03473c6 100644 --- a/convertToSingleHost.js +++ b/convertToSingleHost.js @@ -241,7 +241,7 @@ if (projectName) { } // Modify the manifest to include the name and id of the project - const cmdLine = `npx office-addin-manifest modify ${manifestPath} -g ${appId} -d ${projectName}`; + const cmdLine = `npx office-addin-manifest modify ${manifestPath} -g ${appId} -d "${projectName}"`; childProcess.exec(cmdLine, (error, stdout) => { if (error) { console.error(`Error updating the manifest: ${error}`);