mirror of
https://github.com/scratchfoundation/scratch-blocks.git
synced 2025-07-10 03:36:13 -04:00
Revert "Merge pull request #1772 from cwillisf/windows-fix-local-compile"
This reverts commit4ffecde2bc
, reversing changes made tob63e5c62d3
. What I thought were spurious build failures on CI were apparently legit...
This commit is contained in:
parent
4ffecde2bc
commit
1465a9efe2
1 changed files with 2 additions and 2 deletions
4
build.py
4
build.py
|
@ -323,7 +323,7 @@ class Gen_compressed(threading.Thread):
|
|||
for group in [["google-closure-compiler"], dash_args]:
|
||||
args.extend(filter(lambda item: item, group))
|
||||
|
||||
proc = subprocess.Popen(args, stdin=subprocess.PIPE, stdout=subprocess.PIPE, shell=True)
|
||||
proc = subprocess.Popen(args, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
|
||||
(stdout, stderr) = proc.communicate()
|
||||
|
||||
# Build the JSON response.
|
||||
|
@ -566,7 +566,7 @@ if __name__ == "__main__":
|
|||
|
||||
# Sanity check the local compiler
|
||||
test_args = [closure_compiler, os.path.join("build", "test_input.js")]
|
||||
test_proc = subprocess.Popen(test_args, stdin=subprocess.PIPE, stdout=subprocess.PIPE, shell=True)
|
||||
test_proc = subprocess.Popen(test_args, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
|
||||
(stdout, _) = test_proc.communicate()
|
||||
assert stdout == read(os.path.join("build", "test_expect.js"))
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue