Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Commit

Permalink
Don't escape {
Browse files Browse the repository at this point in the history
  • Loading branch information
leezu committed Oct 11, 2019
1 parent 9fd9e54 commit 976d455
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/jenkins/Jenkinsfile_py3-master_gpu_doc
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ core_logic: {
--name GluonNLP-${env.BRANCH_NAME}-${env.BUILD_NUMBER} \
--save-path batch/${env.BRANCH_NAME}/${env.BUILD_NUMBER}/docs/examples \
--work-dir . --source-ref refs/pull/${env.CHANGE_ID}/head \
--command \"(python3 docs/md2ipynb.py ${md_file} | tee ${stdout_file}; exit \$\{PIPESTATUS[0]\}) 3>&1 1>&2 2>&3 | tee ${stderr_file}; exit \$\{PIPESTATUS[0]\} \"
--command \"(python3 docs/md2ipynb.py ${md_file} | tee ${stdout_file}; exit \${PIPESTATUS[0]}) 3>&1 1>&2 2>&3 | tee ${stderr_file}; exit \${PIPESTATUS[0]} \"
BATCH_EXIT_CODE=\$?
aws s3api wait object-exists --bucket gluon-nlp-staging \
Expand Down Expand Up @@ -107,7 +107,7 @@ core_logic: {
--name GluonNLP-${env.BRANCH_NAME}-${env.BUILD_NUMBER} \
--save-path batch/${env.BRANCH_NAME}/${env.BUILD_NUMBER}/docs/examples \
--work-dir . --source-ref ${env.BRANCH_NAME} \
--command \"(python3 docs/md2ipynb.py ${md_file} | tee ${stdout_file}; exit \$\{PIPESTATUS[0]\}) 3>&1 1>&2 2>&3 | tee ${stderr_file}; exit \$\{PIPESTATUS[0]\} \"
--command \"(python3 docs/md2ipynb.py ${md_file} | tee ${stdout_file}; exit \${PIPESTATUS[0]}) 3>&1 1>&2 2>&3 | tee ${stderr_file}; exit \${PIPESTATUS[0]} \"
BATCH_EXIT_CODE=\$?
aws s3api wait object-exists --bucket gluon-nlp-staging \
Expand Down

0 comments on commit 976d455

Please sign in to comment.