mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-08 11:21:17 -05:00
+2
-1
@@ -33,7 +33,8 @@ comment_markers = {
|
||||
def main():
|
||||
files = subprocess.check_output(['git', 'ls-files']).split('\n')
|
||||
for n in files:
|
||||
if n != '' and 'vendor/' not in n and '.min.js' not in n:
|
||||
if n != '' and not n.startswith('vendor/') and (
|
||||
not n.endswith('.min.js')):
|
||||
_, ext = os.path.splitext(n)
|
||||
if ext == '':
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user