Skip to content
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

Merged
merged 5 commits into from
Aug 6, 2024

Conversation

sichanyoo
Copy link
Contributor

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.

Copy link
Contributor

@jbelkins jbelkins left a 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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: $0 != "AWSSDKForSwift"

Copy link
Contributor Author

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
Copy link
Contributor

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

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed the comment

@sichanyoo sichanyoo merged commit a453825 into main Aug 6, 2024
29 checks passed
@sichanyoo sichanyoo deleted the fix/include-aws-runtime-modules-in-docs branch August 6, 2024 02:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants