# HG changeset patch # User Dennis C. M. # Date 1627165614 -3600 # Node ID aa70db744e5183f5f5c7db700cbfe13268fe551f # Parent 2450a3173284460ce1c28777e7d657d192b37f50 Update ios.yml committer: GitHub diff -r 2450a3173284 -r aa70db744e51 .github/workflows/ios.yml --- a/.github/workflows/ios.yml Sat Jul 24 23:18:15 2021 +0100 +++ b/.github/workflows/ios.yml Sat Jul 24 23:26:54 2021 +0100 @@ -26,7 +26,7 @@ platform: ${{ 'iOS Simulator' }} run: | # xcrun xctrace returns via stderr, not the expected stdout (see https://developer.apple.com/forums/thread/663959) - device=`xcrun xctrace list devices 2>&1 | grep -oE 'iPhone.*?[^\(]+' | head -1 | awk '{$1=$1;print}'`` + device=`xcrun xctrace list devices 2>&1 | grep -oE 'iPhone.*?[^\(]+' | head -1 | awk '{$1=$1;print}'` if [ $scheme = default ]; then scheme=$(cat default); fi if [ "`ls -A | grep -i \\.xcworkspace\$`" ]; then filetype_parameter="workspace" && file_to_build="`ls -A | grep -i \\.xcworkspace\$`"; else filetype_parameter="project" && file_to_build="`ls -A | grep -i \\.xcodeproj\$`"; fi file_to_build=`echo $file_to_build | awk '{$1=$1;print}'`