Skip to content

Instantly share code, notes, and snippets.

@chockenberry
Last active November 22, 2021 23:38
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chockenberry/1ca0e7ebe9a03cac158b0b4d576e7c06 to your computer and use it in GitHub Desktop.
Save chockenberry/1ca0e7ebe9a03cac158b0b4d576e7c06 to your computer and use it in GitHub Desktop.
#!/bin/sh
if [ -z "$1" ]; then
echo "usage: $0 <package_name>"
echo ""
echo "<package_name> is the Name under Archives in the Organizer"
exit
fi
app=$1
dir=`ls -1dt /private/var/folders/*/*/T/"$app"*.xcdistributionlogs | head -1`
log="$dir/IDEDistribution.verbose.log"
echo "Log: $log"
echo "^C to quit\n"
tail -100 -f "$log"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment