Skip to content

Commit ec05954

Browse files
committed
Fix exec.exce command
1 parent a6bc3c6 commit ec05954

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

robomaker-sample-app-ci/src/aws-robomaker-sample-application-ci.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ async function bundle() {
134134

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

140140
async function run() {

0 commit comments

Comments
 (0)