Skip to content

Commit

Permalink
Rename uefivars.py uefivars
Browse files Browse the repository at this point in the history
Our documentation referes to the binary you use to drive uefivars as
"uefivars". Let's rename the binary that we install in the target system
to "uefivars" so that it reflects what we advertise.

To also trigger a new release build with this significant change, bump
the version to 1.2.

Signed-off-by: Alexander Graf <graf@amazon.com>
  • Loading branch information
agraf committed Mar 7, 2024
1 parent 4a252f0 commit eef7058
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setuptools.setup(
name="uefivars",
version="1.1",
version="1.2",
author="Amazon Web Services",
author_email="graf@amazon.com",
description="UEFI variable store tools",
Expand All @@ -21,7 +21,7 @@
install_requires=['google-crc32c', 'deepdiff'],
entry_points={
'console_scripts': [
'uefivars.py = pyuefivars:main',
'uefivars = pyuefivars:main',
],
},
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion test_uefivars.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
def run_uefivars(input_type: str = None, input_file: str = None,
output_type: str = None, output_file: str = None,
extra_args: list = None, input_data: str = None):
args = ['./uefivars.py']
args = ['./uefivars']
if input_type:
args += ['-i', input_type]
if input_file:
Expand Down
File renamed without changes.

0 comments on commit eef7058

Please sign in to comment.