mirror of
https://github.com/electron/electron.git
synced 2026-01-23 06:18:17 -05:00
Skip eslint on our Windows build machine for now
This commit is contained in:
@@ -4,6 +4,7 @@ import glob
|
||||
import os
|
||||
import sys
|
||||
|
||||
from lib.config import PLATFORM
|
||||
from lib.util import execute
|
||||
|
||||
|
||||
@@ -13,6 +14,10 @@ SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
||||
def main():
|
||||
os.chdir(SOURCE_ROOT)
|
||||
|
||||
# Skip eslint on our Windows build machine for now.
|
||||
if PLATFORM == 'win32' and os.getenv('JANKY_SHA1'):
|
||||
return
|
||||
|
||||
eslint = os.path.join(SOURCE_ROOT, 'node_modules', '.bin', 'eslint')
|
||||
if sys.platform in ['win32', 'cygwin']:
|
||||
eslint += '.cmd'
|
||||
|
||||
Reference in New Issue
Block a user