diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-08-10 10:52:16 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-08-10 10:52:16 -0700 |
commit | 5bfe68ea7f7e90e3cb1c3101360cf959b336a857 (patch) | |
tree | 13771101f76676dea6626dbb6a672da038618171 /extension | |
parent | f73931c4fd5cdc7dbe893616bc8f611094cd2c0d (diff) | |
download | sncontinue-5bfe68ea7f7e90e3cb1c3101360cf959b336a857.tar.gz sncontinue-5bfe68ea7f7e90e3cb1c3101360cf959b336a857.tar.bz2 sncontinue-5bfe68ea7f7e90e3cb1c3101360cf959b336a857.zip |
fix: :bug: fix missing path import
Diffstat (limited to 'extension')
-rw-r--r-- | extension/scripts/package.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/extension/scripts/package.js b/extension/scripts/package.js index e36df029..8b2816c5 100644 --- a/extension/scripts/package.js +++ b/extension/scripts/package.js @@ -1,5 +1,6 @@ const { exec } = require("child_process"); const fs = require("fs"); +const path = require("path"); exec("npm install", (error) => { if (error) throw error; |