This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ACTION = build | |
AD_HOC_CODE_SIGNING_ALLOWED = NO | |
ALTERNATE_GROUP = staff | |
ALTERNATE_MODE = u+w,go-w,a+rX | |
ALTERNATE_OWNER = grantdavis | |
ALWAYS_SEARCH_USER_PATHS = NO | |
ALWAYS_USE_SEPARATE_HEADERMAPS = YES | |
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer | |
APPLE_INTERNAL_DIR = /AppleInternal | |
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
🌞 Morning 39 commits ▊░░░░░░░░░░░░░░░░░░░░ 4.1% | |
🌆 Daytime 382 commits ████████▌░░░░░░░░░░░░ 40.6% | |
🌃 Evening 292 commits ██████▌░░░░░░░░░░░░░░ 31.1% | |
🌙 Night 227 commits █████░░░░░░░░░░░░░░░░ 24.1% |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# move project dir | |
PROJECT_HOME=`pwd` | |
echo "cd $PROJECT_HOME" > /tmp/tmp.sh | |
# search .xcodeproj file and strip filename | |
PROJECT_NAME="" | |
for f in *.xcodeproj; do | |
PROJECT_NAME="${f%.*}" |