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
| import glob | |
| import argparse | |
| import subprocess | |
| import re | |
| from termcolor import colored | |
| parser = argparse.ArgumentParser( | |
| description='A utility for building Swift projects outside of XCode') | |
| parser.add_argument('-r', default="main.swift", | |
| help="The main project file (usually main.swift)") |
NewerOlder