Skip to content

Commit

Permalink
reverted back a bit
Browse files Browse the repository at this point in the history
* reveted back a bit because the action is failing
  with some old errors that were already fixed
  • Loading branch information
Andrew-ang9 committed Nov 28, 2024
1 parent 3a26cb0 commit e88f0dc
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/generate_manpage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10' # Use Python 3.10
python-version: '3.10'

- name: Add Universe Repository
run: |
Expand All @@ -46,12 +46,16 @@ jobs:
sudo make install
cd python
python3 setup.py install
sudo ldconfig # Update library path
sudo ldconfig
- name: Verify Python Path
run: |
python -c "import sys; print(sys.path)"
python -c "import pexpect; print('pexpect module is available.')"
python -c "import rpm; print('rpm module is available.')"
- name: Debug CLI Attribute
run: |
python -c "import convert2rhel.cli as cli; print(dir(cli)); print(cli.CLI)" || exit 1
- name: Generate manpages
Expand Down Expand Up @@ -86,3 +90,4 @@ jobs:
else
echo 'Manpages are up-to-date.'
exit 0
fi

0 comments on commit e88f0dc

Please sign in to comment.