Marti Bolivar | b6af8eb | 2018-05-09 11:08:38 -0400 | [diff] [blame] | 1 | # Windows-specific launcher alias for west (west wind?). |
2 | |||||
3 | import os | ||||
4 | import sys | ||||
5 | |||||
6 | zephyr_base = os.environ['ZEPHYR_BASE'] | ||||
7 | sys.path.append(os.path.join(zephyr_base, 'scripts', 'meta')) | ||||
8 | |||||
9 | from west.main import main # noqa E402 (silence flake8 warning) | ||||
10 | |||||
11 | main(sys.argv[1:]) |