Skip to content

Commit

Permalink
yarn init
Browse files Browse the repository at this point in the history
  • Loading branch information
bunsenstraat committed Nov 19, 2023
1 parent 96154bd commit 90d330c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/remixdesktop/src/plugins/scriptRunner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class ScriptRunnerClient extends ElectronBasePluginClient {
async execute(content: string, dir: string): Promise<void> {

this.call('terminal' as any, 'log', this.workingDir)
const child = utilityProcess.fork(path.join(__dirname,'/../tools/yarn/bin/', 'yarn.js'), [`--cwd=${this.workingDir}`, 'add', 'ethers'], {
const child = utilityProcess.fork(path.join(__dirname,'/../tools/yarn/bin/', 'yarn.js'), [`--cwd=${this.workingDir}`, 'init -y'], {
stdio: 'pipe',
})
child && child.stdout && child.stdout.on('data', (data) => {
Expand Down

0 comments on commit 90d330c

Please sign in to comment.