-
Notifications
You must be signed in to change notification settings - Fork 81
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
fix: Update doc generation CLI command to include AWS runtime modules #1659
Conversation
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.
Fix the nits & merge
try FileManager.default | ||
.contentsOfDirectory(atPath: "Sources/Core") | ||
.sorted() | ||
.filter { !($0 == "AWSSDKForSwift") } // Ignore documentation module |
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.
nit: $0 != "AWSSDKForSwift"
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.
Changed as mentioned
.contentsOfDirectory(atPath: "Sources/Core") | ||
.sorted() | ||
.filter { !($0 == "AWSSDKForSwift") } // Ignore documentation module | ||
.filter { !$0.hasPrefix(".") } // Ignore .DS_Store file |
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.
nit: directory contents returned by FileManager
also include .
and ..
; this filter ignores those entries too
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.
Removed the comment
Issue #
#1643
Description of changes
New/existing dependencies impact assessment, if applicable
Conventional Commits
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.