-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added APFS support #314 #317
Conversation
Codecov Report
@@ Coverage Diff @@
## master #317 +/- ##
==========================================
+ Coverage 87.83% 87.99% +0.15%
==========================================
Files 192 202 +10
Lines 8824 9260 +436
==========================================
+ Hits 7751 8148 +397
- Misses 1073 1112 +39
Continue to review full report at Codecov.
|
Holding off on review until checks pass |
0c538ad
to
faa880a
Compare
7ce37dc
to
15a6cdf
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just one question, and I've pushed a few fixes for typos and some extra tests, so please pull before making changes.
|
||
parent_path_spec = getattr(self.path_spec, 'parent', None) | ||
path_spec = apfs_path_spec.APFSPathSpec( | ||
location=parent_location, identifier=parent_identifier, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
parent_location will be uninitialized here if location is None - what's supposed to happen in that unlikely situation?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
apfs_path_spec.APFSPathSpec will raise ValueError if location and identifier are None. Let me fix parent_location not being initialized.
@Onager PTAL |
Depends on: #319
Added APFS support #314