From 133c1ec1eb17f28f9598d5c45d655e3c68716c23 Mon Sep 17 00:00:00 2001 From: SamTV12345 <40429738+samtv12345@users.noreply.github.com> Date: Sun, 17 Mar 2024 12:20:03 +0100 Subject: [PATCH] Fixed exec not defined. --- make_docs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make_docs.js b/make_docs.js index 2026ad5f2..657afa9a2 100644 --- a/make_docs.js +++ b/make_docs.js @@ -1,4 +1,4 @@ -import exec from 'child_process' +import {exec} from 'child_process' import fs from 'fs' import path from 'path'