Hila Ben Abraham | e8c22e9 | 2016-10-20 14:30:32 -0500 | [diff] [blame] | 1 | #!/usr/bin/python2 |
2 | import os | ||||
3 | |||||
4 | # Install tools | ||||
5 | def run(): | ||||
6 | print "\nINSTALLING tools" | ||||
7 | print "***********************" | ||||
8 | helper_path = os.path.dirname(os.path.realpath(__file__)) | ||||
9 | cwd_path = os.getcwd() | ||||
10 | os.chdir(helper_path) | ||||
11 | os.chdir("tools") | ||||
12 | os.system("make") | ||||
13 | os.system("sudo make install") | ||||
14 | os.chdir(cwd_path) |