Skip to content

Commit

Permalink
Merge pull request #11858 from ajevans99/fix-validation-typo
Browse files Browse the repository at this point in the history
Fix typo in validation for `--validation-dir` help message
  • Loading branch information
dnkoutso committed Apr 12, 2023
2 parents 3e187db + ad21b94 commit 3183b71
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ To install release candidates run `[sudo] gem install cocoapods --pre`
[#11828](https://github.com/CocoaPods/CocoaPods/pull/11828)
[#11808](https://github.com/CocoaPods/CocoaPods/issues/11808)

* Fix typo in validation for `--validation-dir` help message
[Austin Evans](https://github.com/ajevans99)
[#11857](https://github.com/CocoaPods/CocoaPods/issues/11857)

# Xcode 14.3 fix: `pod lib lint` warning generation from main.m.
[Paul Beusterien](https://github.com/paulb777)
[#11846](https://github.com/CocoaPods/CocoaPods/issuess/11846)
Expand Down
2 changes: 1 addition & 1 deletion lib/cocoapods/command/lib/lint.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def self.options
['--test-specs=test-spec1,test-spec2,etc', 'List of test specs to run'],
['--analyze', 'Validate with the Xcode Static Analysis tool'],
['--configuration=CONFIGURATION', 'Build using the given configuration (defaults to Release)'],
['--validaton-dir', 'The directory to use for validation. If none is specified a temporary directory will be used.'],
['--validation-dir', 'The directory to use for validation. If none is specified a temporary directory will be used.'],
].concat(super)
end

Expand Down
2 changes: 1 addition & 1 deletion lib/cocoapods/command/repo/push.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def self.options
'This takes precedence over the Swift versions specified by the spec or a `.swift-version` file'],
['--no-overwrite', 'Disallow pushing that would overwrite an existing spec'],
['--update-sources', 'Make sure sources are up-to-date before a push'],
['--validaton-dir', 'The directory to use for validation. If none is specified a temporary directory will be used.'],
['--validation-dir', 'The directory to use for validation. If none is specified a temporary directory will be used.'],
].concat(super)
end

Expand Down
2 changes: 1 addition & 1 deletion lib/cocoapods/command/spec/lint.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def self.options
['--test-specs=test-spec1,test-spec2,etc', 'List of test specs to run'],
['--analyze', 'Validate with the Xcode Static Analysis tool'],
['--configuration=CONFIGURATION', 'Build using the given configuration (defaults to Release)'],
['--validaton-dir', 'The directory to use for validation. If none is specified a temporary directory will be used.'],
['--validation-dir', 'The directory to use for validation. If none is specified a temporary directory will be used.'],
].concat(super)
end

Expand Down

0 comments on commit 3183b71

Please sign in to comment.