Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
executable file
·
34 lines (26 loc) · 900 Bytes

File metadata and controls

executable file
·
34 lines (26 loc) · 900 Bytes
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python3
# Copyright 2019 The Emscripten Authors. All rights reserved.
# Emscripten is available under two separate licenses, the MIT license and the
# University of Illinois/NCSA Open Source License. Both these licenses can be
# found in the LICENSE file.
"""Check for clean checkout. This is run after tests during CI to ensure
we are not polluting the source checkout.
"""
import os
import subprocess
import sys
def main():
print("Running 'git status --short'")
print('')
here = os.path.dirname(__file__)
root = os.path.dirname(here)
output = subprocess.check_output(['git', 'status', '--short'], cwd=root)
output = output.decode('utf-8').strip()
if not output:
print('Tree is clean.')
return 0
print(output)
print('\nCheckout is not clean. See above for list of dirty/untracked files.')
return 1
if __name__ == '__main__':
sys.exit(main())
Morty Proxy This is a proxified and sanitized view of the page, visit original site.