This file contains hidden or 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 | |
if [[ $# -ne 8 ]]; then | |
printf "Usage: model boardconfig version ecid save_folder show_message_on_fail show_tsschecker_output use_notification\n" | |
exit 1 | |
fi | |
model=$1 | |
boardconfig=$2 | |
version=$3 |
This file contains hidden or 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
choose(DAWindowController)[0]->installWindowsDirect = true |
This file contains hidden or 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/sh | |
function print_usage { | |
printf 'Usage: %s {use_simulator} {sdks_output_path} {overwrite_existing} {no_warnings} {tbd_tool_path} {xcode_installation_path} \n' "$(basename "$0")" | |
printf "{} options are optional to provide, and can be ignored with a '-'\n" | |
} | |
if [ "$1" == "-h" ]; then | |
print_usage | |
exit 0 |
This file contains hidden or 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
export THEOS=~/theos | |
export IPHONE6S_ECID=3B52EBBD82C | |
export IPAD4_ECID=3834C1643B2 | |
export IOS_VERSIONS_ARRAY=( | |
"6.0" "6.0.1" "6.1" "6.1.2" "6.1.3" #5 versions of iOS 6 | |
"7.0" "7.0.2" "7.0.3" "7.0.4" "7.0.6" "7.1" "7.1.1" "7.1.2" #8 versions of iOS 7 | |
"8.0" "8.0.1" "8.0.2" "8.1" "8.1.1" "8.1.2" "8.1.3" "8.2" "8.3" "8.4" "8.4.1" #11 versions of iOS 8 | |
"9.0" "9.0.1" "9.0.2" "9.1" "9.2" "9.2.1" "9.3" "9.3.1" "9.3.2" "9.3.3" "9.3.4" "9.3.5" #12 versions of iOS 9 |
This file contains hidden or 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 | |
if [ $# -ne 8 ]; then | |
printf "Usage: model boardconfig version ecid save-folder print_message_on_failure_bool show_tsschecker_output use_notification\n" | |
exit 1 | |
fi | |
if [ ! -d "$5" ]; then | |
mkdir -p "$5" | |
fi |