Skip to content

Commit

Permalink
NXDRIVE-2879: Update Python path for build pipeline (#4336)
Browse files Browse the repository at this point in the history
NXDRIVE-2879: Update Python path for build pipeline
  • Loading branch information
swetayadav1 authored Nov 20, 2023
1 parent eafde22 commit c523025
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions docs/changes/5.3.3.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,11 @@ Release date: `2023-xx-xx`

## Packaging / Build

- [NXDRIVE-2](https://jira.nuxeo.com/browse/NXDRIVE-2):
- [NXDRIVE-2879](https://jira.nuxeo.com/browse/NXDRIVE-2879): Update Python path for build pipeline

## Tests

- [NXDRIVE-2852](https://jira.nuxeo.com/browse/NXDRIVE-2852): Create and Modify test cases for Processor
- [NXDRIVE-2](https://jira.nuxeo.com/browse/NXDRIVE-2):

## Docs

Expand Down
2 changes: 1 addition & 1 deletion tools/osx/deploy_ci_agent.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -e

export OSI="osx"

. "$(python -c "import os.path; print(os.path.realpath('$0').replace('/osx/', '/posix/'))")"
. "$(python3 -c "import os.path; print(os.path.realpath('$0').replace('/osx/', '/posix/'))")"


# Global variables
Expand Down
2 changes: 1 addition & 1 deletion tools/posix/deploy_ci_agent.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
set -e

# Global variables
PYTHON="python -Xutf8 -E -s"
PYTHON="python3 -Xutf8 -E -s"
PYTHON_VENV="./venv/bin/python -Xutf8 -E -s"
PYTHON_OPT="${PYTHON_VENV} -OO"
PIP="${PYTHON_OPT} -m pip install --no-cache-dir --upgrade --upgrade-strategy=only-if-needed --progress-bar=off"
Expand Down

0 comments on commit c523025

Please sign in to comment.