Skip to content

Commit

Permalink
added in a check to see if pexpect is in the action
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-ang9 committed Nov 26, 2024
1 parent fbfa96b commit 6c9dbdc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/generate_manpage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ jobs:
pip install --upgrade pip
pip install pexpect argparse-manpage
- name: Verify Python Path
run: |
python -c "import sys; print(sys.path)"
python -c "import pexpect; print('pexpect module is available.')"
- name: Generate manpages
run: |
set -e
Expand Down Expand Up @@ -57,3 +62,4 @@ jobs:
else
echo 'Manpages are up-to-date.'
exit 0
fi

0 comments on commit 6c9dbdc

Please sign in to comment.