Skip to content

Commit

Permalink
Use python3 venv in pgindent.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
akorotkov authored and pashkinelfe committed Dec 9, 2024
1 parent da07b1a commit 6377d11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci/pgindent.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cd postgresql/src/tools/pg_bsd_indent
make -sj4 install
cd ../../../..

export PATH="$GITHUB_WORKSPACE/pgsql/bin:$GITHUB_WORKSPACE/postgresql/src/tools/pgindent:$PATH"
export PATH="$GITHUB_WORKSPACE/pgsql/bin:$GITHUB_WORKSPACE/python3-venv/bin:$GITHUB_WORKSPACE/postgresql/src/tools/pgindent:$PATH"

cd orioledb
make USE_PGXS=1 -s pgindent
Expand All @@ -15,7 +15,7 @@ git diff > pgindent.diff
cd ..

if [ -s orioledb/pgindent.diff ]; then
echo "========= Contents of pgindent.diff"
echo "========= Contents of pgindent.diff"
cat orioledb/pgindent.diff
exit 1
else
Expand Down

0 comments on commit 6377d11

Please sign in to comment.