From 8fec09237ad2e8954902764a4f7ae714896a3dbd Mon Sep 17 00:00:00 2001 From: Christopher Pickering Date: Fri, 18 Feb 2022 17:02:44 -0600 Subject: [PATCH] fixed path name --- bin/install.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install.js b/bin/install.js index a4c7404..ad3c596 100755 --- a/bin/install.js +++ b/bin/install.js @@ -1,6 +1,6 @@ const {spawn} = require('child_process'); var dataToSend; -const python = spawn('python3', ['-m', 'pip', 'install', '--upgrade','--quiet', '-r', '../requirement.txt'], {"cwd": "./src"}); +const python = spawn('python3', ['-m', 'pip', 'install', '--upgrade','--quiet', '-r', '../requirements.txt'], {"cwd": "./src"}); python.stdout.on('data', function (data) {