Skip to content

Commit 31f6da7

Browse files
author
Gilles Grousset
committed
Merge branch 'master' into develop
2 parents 5ceba50 + ad24cab commit 31f6da7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/sonarqube-fastlane.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ If you already use Fastlane, you can simply setup a new lane performing the anal
44

55
```ruby
66
lane :metrics do
7-
scan(scheme: "[SCHEME]", code_coverage: true, xcargs: "-derivedDataPath ./DerivedData", output_directory: "./reports")
7+
scan(scheme: "[SCHEME]", code_coverage: true, derived_data_path: "./DerivedData", output_directory: "./reports")
88
slather(cobertura_xml: true, jenkins: true, scheme: "[SCHEME]", build_directory: "./DerivedData", output_directory: "./reports", proj: "./[PROJECT].xcodeproj")
99
sh("cd .. && lizard ./[SOURCE_FOLDER] -l swift --xml > ./reports/lizard-report.xml")
1010
swiftlint(output_file: "./reports/swiftlint.txt", ignore_exit_status: true)

src/main/shell/run-sonar-swift.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ if [ "$vflag" = "on" ]; then
225225
echo "Xcode project file is: $projectFile"
226226
echo "Xcode workspace file is: $workspaceFile"
227227
echo "Xcode application scheme is: $appScheme"
228-
if [ -n "$unittests"]; then
228+
if [ -n "$unittests" ]; then
229229
echo "Destination simulator is: $destinationSimulator"
230230
echo "Excluded paths from coverage are: $excludedPathsFromCoverage"
231231
else

0 commit comments

Comments
 (0)