Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
N
nvidia-patch
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
nvidia-patch
Commits
2f11563e
Commit
2f11563e
authored
Nov 09, 2023
by
Jai Luthra
Committed by
Jai Luthra
Nov 09, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
autopatch: Ensure non-zero retval for missing installer
Signed-off-by:
Jai Luthra
<
me@jailuthra.in
>
parent
3b52cbf2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
6 deletions
+5
-6
win/tools/autopatch/autopatch.py
win/tools/autopatch/autopatch.py
+5
-6
No files found.
win/tools/autopatch/autopatch.py
View file @
2f11563e
...
@@ -90,6 +90,8 @@ class MultipleOccurencesException(Exception):
...
@@ -90,6 +90,8 @@ class MultipleOccurencesException(Exception):
class
UnknownPlatformException
(
Exception
):
class
UnknownPlatformException
(
Exception
):
pass
pass
class
InstallerNotFoundException
(
Exception
):
pass
class
ExtractedTarget
:
class
ExtractedTarget
:
name
=
None
name
=
None
...
@@ -229,14 +231,11 @@ def patch_flow(installer_file, search, replacement, target, target_name, patch_n
...
@@ -229,14 +231,11 @@ def patch_flow(installer_file, search, replacement, target, target_name, patch_n
print
(
f
"Using downloaded file in '{file_path}'"
)
print
(
f
"Using downloaded file in '{file_path}'"
)
installer_file
=
file_path
installer_file
=
file_path
except
(
urllib
.
error
.
URLError
,
Exception
)
as
e
:
except
(
urllib
.
error
.
URLError
,
Exception
)
as
e
:
print
(
f
"Failed to download the file: {e}"
)
raise
InstallerNotFoundException
(
f
"Failed to download the file: {e}"
)
return
except
Exception
as
e
:
except
Exception
as
e
:
print
(
f
"An error occurred during download: {str(e)}"
)
raise
InstallerNotFoundException
(
f
"An error occurred during download: {str(e)}"
)
return
else
:
else
:
print
(
f
"Invalid installer file or version: {installer_file}"
)
raise
InstallerNotFoundException
(
f
"Invalid installer file or version: {installer_file}"
)
return
# Rest of the code remains the same...
# Rest of the code remains the same...
patch
=
make_patch
(
installer_file
,
patch
=
make_patch
(
installer_file
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment