Skip to content

Commit e8da4e8

Browse files
authored
Speed up pod repo push (#9786)
Speed up `pod repo push` by adding `--skip-import-validation` to pods.
1 parent f35939a commit e8da4e8

File tree

1 file changed

+2
-2
lines changed
  • scripts/create_spec_repo/Sources/SpecRepoBuilder

1 file changed

+2
-2
lines changed

scripts/create_spec_repo/Sources/SpecRepoBuilder/main.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ extension Constants {
3131

3232
// flags for 'pod push'
3333
extension Constants {
34-
static let flags = ["--skip-tests", "--allow-warnings"]
35-
static let umbrellaPodFlags = Constants.flags + ["--skip-import-validation", "--use-json"]
34+
static let flags = ["--skip-tests", "--allow-warnings", "--skip-import-validation"]
35+
static let umbrellaPodFlags = Constants.flags + ["--use-json"]
3636
}
3737

3838
// SpecFiles is a wraper of dict mapping from required pods to their path. This

0 commit comments

Comments
 (0)