Skip to content

Commit

Permalink
Remove __main__ from path
Browse files Browse the repository at this point in the history
  • Loading branch information
Jip-Hop committed Jul 16, 2024
1 parent cf4157e commit e8a371d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,6 @@ jobs:
env:
PYTHONUNBUFFERED: 1
run: |
sudo chown 0:0 jlmkr.py ./test/test-jlmkr
sudo chown -R 0:0 jlmkr.py ./test/test-jlmkr
sudo bash ./test/test-jlmkr
sudo ./test/test.sh
2 changes: 1 addition & 1 deletion jlmkr.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
current_path = os.path.realpath(__file__)

# Define the relative path you want to resolve
relative_path = "src/jlmkr/__main__.py"
relative_path = "src/jlmkr"

# Resolve the relative path
script_path = os.path.join(os.path.dirname(current_path), relative_path)
Expand Down

0 comments on commit e8a371d

Please sign in to comment.