-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path__CHECK.command
executable file
·15 lines (12 loc) · 1.04 KB
/
__CHECK.command
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#! /bin/sh
cd "`dirname "$0"`"
for file in "CHMExtractor" "CoreLS" "DesktopLyrics-Lite" "FilenameList" "FingerFrag" "FingerMaze" "FlowCore" "InstaCode" "iOmniMap" "iRipCD" "iRipDVD" "KeyPresser" "LayoutTest" "Leaker" "MacEVO" "MailboxAlert" "MailSpy" "MenuSwitch" "MountMenu" "MovieCutter" "MovieDB" "MusicWatch" "OmniExpose" "PDFullscreen" "Phorgiveness" "QTPresenter" "ReadingListPro" "ReceiptDump" "SandboxChecker" "SecondRow" "SelectionFlasher" "SMARTReporter-Lite" "SMARTReporterFactoryReset" "SpotifyAdBlocker" "STOCKings" "TerraCore" "TimerMenu" "Translator" "TunesControllerServer" "Updater" "VisionOCR" "VolumeCore" "WindowMover" "WindowTiler" "XMPV" "Diagnostics/CoreCodeDiagnosisTool" "Diagnostics/SMARTReporterDiagnosisTool" "Diagnostics/UninstallPKGDiagnosisTool" "Diagnostics/VersionsManagerDiagnosisTool"
do
cd "${file}"
echo "${file}"
xcodebuild -configuration Debug clean |grep -i '\*\*'
xcodebuild -configuration Debug build |grep -i '\*\*'
xcodebuild -configuration Debug clean |grep -i '\*\*'
rm -rf "build/"
cd "`dirname "$0"`"
done