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
Commits
dbf3e214
Unverified
Commit
dbf3e214
authored
3 months ago
by
Anri Dellal
Committed by
Oliver Smith
3 months ago
Browse files
Options
Downloads
Patches
Plain Diff
pmb.aportgen.device: fix skipping when analyzing boot image (MR 2507)
Fix #2516
parent
c831302a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!2507
pmb.aportgen.device: fix skipping when analyzing boot image
Pipeline
#211455
failed
3 months ago
Stage: test
Stage: deploy
Stage: integration-test
Changes
1
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
pmb/aportgen/device.py
+2
-2
2 additions, 2 deletions
pmb/aportgen/device.py
with
2 additions
and
2 deletions
pmb/aportgen/device.py
+
2
−
2
View file @
dbf3e214
...
...
@@ -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
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment