diff --git a/apps/remix-ide/ci/publish_plugin.ts b/apps/remix-ide/ci/publish_plugin.ts index 5d8c2f0eac..aa412edb53 100644 --- a/apps/remix-ide/ci/publish_plugin.ts +++ b/apps/remix-ide/ci/publish_plugin.ts @@ -90,6 +90,8 @@ import * as child_process from 'child_process' // write the profile.json file 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')) // create pull request const promisifyExec = util.promisify(child_process.exec)