31 lines
777 B
Python
31 lines
777 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
import glob
|
||
|
import os
|
||
|
import subprocess
|
||
|
import sys
|
||
|
|
||
|
|
||
|
SOURCE_ROOT = os.path.dirname(os.path.dirname(__file__))
|
||
|
|
||
|
|
||
|
def main():
|
||
|
os.chdir(SOURCE_ROOT)
|
||
|
|
||
|
coffeelint = os.path.join(SOURCE_ROOT, 'node_modules', 'coffeelint', 'bin',
|
||
|
'coffeelint')
|
||
|
files = glob.glob('browser/api/lib/*.coffee') + \
|
||
|
glob.glob('renderer/api/lib/*.coffee') + \
|
||
|
glob.glob('common/api/lib/*.coffee') + \
|
||
|
glob.glob('browser/atom/*.coffee')
|
||
|
|
||
|
if sys.platform in ['win32', 'cygwin']:
|
||
|
subprocess.check_call(['node', coffeelint] + files,
|
||
|
executable='C:/Program Files/nodejs/node.exe')
|
||
|
else:
|
||
|
subprocess.check_call(['node', coffeelint] + files)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
sys.exit(main())
|