diff --git a/extensions/resource-deployment/src/services/notebookService.ts b/extensions/resource-deployment/src/services/notebookService.ts index 614e405bce..b726d57d02 100644 --- a/extensions/resource-deployment/src/services/notebookService.ts +++ b/extensions/resource-deployment/src/services/notebookService.ts @@ -79,6 +79,7 @@ export class NotebookService implements INotebookService { const workingDirectory = this.platformService.storagePath(); const notebookFullPath = path.join(workingDirectory, fileName); const outputFullPath = path.join(workingDirectory, `output-${fileName}`); + process.env['ACCEPT_EULA'] = 'yes'; try { await this.platformService.saveTextFile(content, notebookFullPath); await this.platformService.runCommand(`azdata notebook run --path "${notebookFullPath}" --output-path "${workingDirectory}" --timeout -1`,