Skip to content

Commit

Permalink
noxfile: Fixed typo in the upload task for nox
Browse files Browse the repository at this point in the history
  • Loading branch information
lethalbit committed Oct 19, 2023
1 parent 21376c7 commit aaa7f94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ def dist(session: Session) -> None:
def upload(session: Session) -> None:
session.install('twine')
dist(session)
session.log(f'Uploading sol-{sol_version()} to PyPi')
session.log(f'Uploading sol_usb-{sol_version()} to PyPi')
session.run(
'python', '-m', 'twine',
'upload', f'{DIST_DIR}/sol-{sol_version()}*'
'upload', f'{DIST_DIR}/sol*usb-{sol_version()}*'
)

0 comments on commit aaa7f94

Please sign in to comment.