Skip to content

Commit 7fd1181

Browse files
committed
---
yaml --- r: 182767 b: refs/heads/beta c: 04408fa h: refs/heads/master i: 182765: a313fa3 182763: d91089f 182759: 83bf4fd 182751: 82167ee v: v3
1 parent 607f1f2 commit 7fd1181

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ refs/heads/automation-fail: 1bf06495443584539b958873e04cc2f864ab10e4
3131
refs/heads/issue-18208-method-dispatch-3-quick-reject: 2009f85b9f99dedcec4404418eda9ddba90258a2
3232
refs/heads/batch: b7fd822592a4fb577552d93010c4a4e14f314346
3333
refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
34-
refs/heads/beta: 2822bc582c777fe513e67ae781ab829a053a66c3
34+
refs/heads/beta: 04408fadd39b8fe75a97f08186be6701dd200799
3535
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
3636
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
3737
refs/heads/tmp: eb836bf767aa1d8d4cba488a9091cde3c0ab4b2f

branches/beta/src/etc/make-win-dist.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@
1414
# argv[3] = target triple
1515
# The first two correspond to the two installable components defined in the setup script.
1616

17-
import sys, os, shutil, subprocess
17+
import sys
18+
import os
19+
import shutil
20+
import subprocess
21+
1822

1923
def find_files(files, path):
2024
found = []
@@ -28,6 +32,7 @@ def find_files(files, path):
2832
raise Exception("Could not find '%s' in %s" % (fname, path))
2933
return found
3034

35+
3136
def make_win_dist(rust_root, gcc_root, target_triple):
3237
# Ask gcc where it keeps its stuff
3338
gcc_out = subprocess.check_output(["gcc.exe", "-print-search-dirs"])
@@ -114,5 +119,5 @@ def make_win_dist(rust_root, gcc_root, target_triple):
114119
for src in target_libs:
115120
shutil.copy(src, target_lib_dir)
116121

117-
if __name__=="__main__":
122+
if __name__ == "__main__":
118123
make_win_dist(sys.argv[1], sys.argv[2], sys.argv[3])

0 commit comments

Comments
 (0)