Skip to content

Commit 89f3731

Browse files
committed
fix: fix whitespaces
1 parent e522495 commit 89f3731

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/xcode.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ exports.detect = function detect(options, callback) {
553553

554554
Object.keys(simulatorDevicePairCompatibility).some(function (xcodeRange) {
555555
if (appc.version.satisfies(xc.version, xcodeRange)) {
556-
xc.simDevicePairs = simulatorDevicePairCompatibility[xcodeRange];
556+
xc.simDevicePairs = simulatorDevicePairCompatibility[xcodeRange];
557557

558558
// use the device pair compatibility to see if the simruntime is supported by
559559
// this Xcode as there isn't a way to programmatically do it
@@ -617,7 +617,7 @@ exports.detect = function detect(options, callback) {
617617
var p = path.join(dir, 'Applications', name + '.app', 'Contents', 'MacOS', name);
618618
if (fs.existsSync(p)) {
619619
xc.executables.simulator = p;
620-
return true;
620+
return true;
621621
}
622622
});
623623

@@ -646,7 +646,7 @@ exports.detect = function detect(options, callback) {
646646
dest.push(ver);
647647
}
648648
}
649-
});
649+
});
650650

651651
xc.sims.sort();
652652
xc.watchos.sims.sort();

0 commit comments

Comments
 (0)