fixed path name

This commit is contained in:
Christopher Pickering 2022-02-18 17:02:44 -06:00
parent c6c0c005f1
commit 8fec09237a
No known key found for this signature in database
GPG key ID: E14DB3B0A0FACF84

View file

@ -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) {