File tree 9 files changed +10
-10
lines changed
generate_code_coverage_report
IncrementalCoverageReportGenerator
9 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 24
24
exit 1
25
25
fi
26
26
27
- # The release build won't generage Carthage distro if the curreent
27
+ # The release build won't generate Carthage distro if the current
28
28
# PackageManifest version has already been released.
29
29
carthage_version_check=" --enable-carthage-version-check"
30
30
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ USAGE: scripts/check.sh [--allow-dirty] [--commit] [<revision>]
24
24
Runs auto-formatting scripts, source-tree checks, and linters on any files that
25
25
have changed since origin/main.
26
26
27
- By default, any changes are left as uncommited changes in the working tree. You
27
+ By default, any changes are left as uncommitted changes in the working tree. You
28
28
can review them with git diff. Pass --commit to automatically commit any changes.
29
29
30
30
Pass an alternate revision to use as the basis for checking changes.
@@ -174,7 +174,7 @@ if ! git diff-index --quiet HEAD --; then
174
174
fi
175
175
fi
176
176
177
- # Show Travis-related environment variables, to help with debuging failures.
177
+ # Show Travis-related environment variables, to help with debugging failures.
178
178
if [[ " ${VERBOSE} " == true ]]; then
179
179
env | egrep ' ^TRAVIS_(BRANCH|COMMIT|PULL|REPO)' | sort || true
180
180
fi
Original file line number Diff line number Diff line change 857
857
# Files to exclude from linting. This is set by the --exclude flag.
858
858
_excludes = None
859
859
860
- # Whether to supress all PrintInfo messages, UNRELATED to --quiet flag
860
+ # Whether to suppress all PrintInfo messages, UNRELATED to --quiet flag
861
861
_quiet = False
862
862
863
863
# The allowed line length of files.
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ python3 measure_cocoapod_size.py --cocoapods FirebaseABTesting
69
69
70
70
The ` binary_size_metrics ` on GitHub Actions [ workflow] ( https://github.com/firebase/firebase-ios-sdk/blob/main/.github/workflows/health-metrics-presubmit.yml )
71
71
is running binary size measurement presubmits and postsubmits. The environment for this job
72
- could be found in ` runs-on ` . More details about the envionment could be found [ here] ( https://github.com/actions/virtual-environments#available-environments ) .
72
+ could be found in ` runs-on ` . More details about the environment could be found [ here] ( https://github.com/actions/virtual-environments#available-environments ) .
73
73
74
74
Factors below might also affect the binary size:
75
75
- Each testapp is measured by a default version Xcode from the GitHub Actions environment above.
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Common parameters for both pull_request and merge:
24
24
25
25
In a workflow, this will run for each pull request update. The command below will generate a report
26
26
in a PR. After a workflow of test coverage is done, a new coverage report will be posted on a
27
- comment of a pull request. If such comment has existed, this comment will be overriden by the latest
27
+ comment of a pull request. If such comment has existed, this comment will be overridden by the latest
28
28
report.
29
29
30
30
Since the flag is ` presubmit ` here, the following options are required for a PR request:
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ struct FileIncrementalChanges: Codable {
45
45
}
46
46
}
47
47
48
- /// `xccov` outcomes of a file from a xcresult bundle will be transfered
48
+ /// `xccov` outcomes of a file from a xcresult bundle will be transferred
49
49
/// to the following instance.
50
50
struct LineCoverage : Codable {
51
51
var fileName : String
Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ struct UpdatedFilesCollector: ParsableCommand {
115
115
encoding: String . Encoding. utf8
116
116
)
117
117
} catch {
118
- fatalError ( " Error while writting in \( outputPath. path) . \n \( error) " )
118
+ fatalError ( " Error while writing in \( outputPath. path) . \n \( error) " )
119
119
}
120
120
}
121
121
}
Original file line number Diff line number Diff line change @@ -78,6 +78,6 @@ for encrypted_file in $files; do
78
78
exit 1
79
79
fi
80
80
81
- # Cleanup the decrpted file now that it's been re-encrypted.
81
+ # Cleanup the decrypted file now that it's been re-encrypted.
82
82
rm " $decrypted_file "
83
83
done
Original file line number Diff line number Diff line change 16
16
17
17
# USAGE: run_database_emulator.sh { run | start | stop }
18
18
#
19
- # Downloads and runs the Firebase Realtime Databas emulator
19
+ # Downloads and runs the Firebase Realtime Database emulator
20
20
21
21
set -euo pipefail
22
22
You can’t perform that action at this time.
0 commit comments