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
#!/usr/bin/env python | |
import re | |
import sys | |
from subprocess import check_output | |
if len(sys.argv) > 1: | |
base = sys.argv[1] | |
else: | |
base = 'develop' |
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
### Keybase proof | |
I hereby claim: | |
* I am or on github. | |
* I am or (https://keybase.io/or) on keybase. | |
* I have a public key whose fingerprint is F645 200C 0C11 FC4E F9FE D27C 7D42 8042 4657 C776 | |
To claim this, I am signing this object: |
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
#!/usr/bin/env python2.7 | |
import argparse | |
import os | |
import re | |
import shutil | |
import sys | |
import tempfile | |
from copy import deepcopy |