From 0e5f85616377deb15474eade78c898c884b27bb7 Mon Sep 17 00:00:00 2001 From: filip mertens Date: Tue, 21 Mar 2023 13:56:05 +0100 Subject: [PATCH] to string --- apps/remix-ide/ci/publish_plugin.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/remix-ide/ci/publish_plugin.ts b/apps/remix-ide/ci/publish_plugin.ts index aa412edb53..d8a0d60b33 100644 --- a/apps/remix-ide/ci/publish_plugin.ts +++ b/apps/remix-ide/ci/publish_plugin.ts @@ -91,7 +91,8 @@ import * as child_process from 'child_process' fs.writeFileSync(plugin_directory_path + pluginName + '/profile.json', JSON.stringify(plugin, null, 2)) // read the profile.json file - console.log(fs.readFileSync(plugin_directory_path + pluginName + '/profile.json')) + const content = fs.readFileSync(plugin_directory_path + pluginName + '/profile.json') + console.log('profile.json', content.toString()) // create pull request const promisifyExec = util.promisify(child_process.exec)