Skip to content

Commit

Permalink
Fixed syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
inket committed Sep 18, 2022
1 parent 4121314 commit 3bcd32d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion MacSymbolicatorTests/create_binaries_and_dsyms.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cd TestProject
rm -rf build
xcodebuild clean

if ! command -v xcbeautify &> /dev/null
if ! command -v xcbeautify &> /dev/null; then
xcodebuild archive -configuration Release -target CrashingTest -target CrashingInAnotherTargetTest
xcodebuild archive -configuration Release -target SingleThreadHangingTest -target MultiThreadHangingTest -target MultiTargetHangingTest
xcodebuild archive -configuration Release -target iOSCrashingTest
Expand Down
2 changes: 1 addition & 1 deletion MacSymbolicatorTests/create_expected_output.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ cd ..
rm -rf build
rm -rf DerivedData

if ! command -v xcbeautify &> /dev/null
if ! command -v xcbeautify &> /dev/null; then
xcodebuild clean build -configuration Release -scheme MacSymbolicatorCLI
else
xcodebuild clean build -configuration Release -scheme MacSymbolicatorCLI | xcbeautify
Expand Down

0 comments on commit 3bcd32d

Please sign in to comment.