mirror of
https://github.com/Hopiu/djLint.git
synced 2026-03-16 21:40:24 +00:00
fixed path name
This commit is contained in:
parent
c6c0c005f1
commit
8fec09237a
1 changed files with 1 additions and 1 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue