Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pmbootstrap
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
postmarketOS
pmbootstrap
Merge requests
!2507
pmb.aportgen.device: fix skipping when analyzing boot image
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
pmb.aportgen.device: fix skipping when analyzing boot image
HenriDellal/pmbootstrap:fix-skip-bootimg-analyse
into
master
Overview
1
Commits
1
Pipelines
2
Changes
1
Merged
Anri Dellal
requested to merge
HenriDellal/pmbootstrap:fix-skip-bootimg-analyse
into
master
3 months ago
Overview
1
Commits
1
Pipelines
2
Changes
1
Expand
Fix
#2516 (closed)
0
0
Merge request reports
Viewing commit
dbf3e214
Show latest version
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Unverified
dbf3e214
pmb.aportgen.device: fix skipping when analyzing boot image (MR 2507)
· dbf3e214
Anri Dellal
authored
3 months ago
Fix #2516
pmb/aportgen/device.py
+
2
−
2
Options
@@ -111,9 +111,9 @@ def ask_for_bootimg():
while
True
:
response
=
pmb
.
helpers
.
cli
.
ask
(
"
Path
"
,
None
,
""
,
False
)
path
=
Path
(
os
.
path
.
expanduser
(
response
))
if
not
path
:
if
not
response
:
return
None
path
=
Path
(
os
.
path
.
expanduser
(
response
))
try
:
return
pmb
.
parse
.
bootimg
(
path
)
except
Exception
as
e
:
Loading