Skip to content

Commit

Permalink
Fix exec.exce command
Browse files Browse the repository at this point in the history
  • Loading branch information
jiten-thakkar committed Oct 30, 2021
1 parent a6bc3c6 commit ec05954
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ async function bundle() {

async function installPyparsing() {
//install pyparsing-2.0.2 to a local directory so that it can be added to PYTHONPATH env variable
await exec.exec("bash", ["-c", `pip3 install --install-option="--prefix=/home/pypackages" pyparsing==2.0.2`, getWorkingDirExecOptions()]);
await exec.exec("bash", ["-c", `pip3 install --install-option="--prefix=/home/pypackages" pyparsing==2.0.2`], getWorkingDirExecOptions());
}

async function run() {
Expand Down

0 comments on commit ec05954

Please sign in to comment.