File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -221,7 +221,6 @@ function registerToolSubcommand(
221221 const jsonArg = argv . json as string | undefined ;
222222 const profileOverride = argv . profile as string | undefined ;
223223 const outputFormat = ( argv . output as OutputFormat ) ?? 'text' ;
224- const outputStyle = ( argv . style as OutputStyle ) ?? 'normal' ;
225224 const socketPath = argv . socket as string ;
226225 const logLevel = argv [ 'log-level' ] as string | undefined ;
227226
Original file line number Diff line number Diff line change @@ -208,9 +208,9 @@ async function main(): Promise<void> {
208208 return { success : result . success , output : result . output } ;
209209 } ) ;
210210 const xcodeAvailable = Boolean (
211- xcodeVersion . version ??
212- xcodeVersion . buildVersion ??
213- xcodeVersion . developerDir ??
211+ xcodeVersion . version ||
212+ xcodeVersion . buildVersion ||
213+ xcodeVersion . developerDir ||
214214 xcodeVersion . xcodebuildPath ,
215215 ) ;
216216 const axeVersion = await getAxeVersionMetadata ( async ( command ) => {
You can’t perform that action at this time.
0 commit comments