Skip to content

Commit 356e81e

Browse files
committed
Always use separate patch_list variable
1 parent 183583c commit 356e81e

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

upstream_utils/expected.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ def main():
3131
# master on 2024-01-25
3232
tag = "3f0ca7b19253129700a073abfa6d8638d9f7c80c"
3333

34-
expected = Lib(name, url, tag, [], copy_upstream_src)
34+
patch_list = []
35+
36+
expected = Lib(name, url, tag, patch_list, copy_upstream_src)
3537
expected.main()
3638

3739

upstream_utils/googletest.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,9 @@ def main():
6969
url = "https://github.com/google/googletest.git"
7070
tag = "v1.14.0"
7171

72-
googletest = Lib(name, url, tag, [], copy_upstream_src)
72+
patch_list = []
73+
74+
googletest = Lib(name, url, tag, patch_list, copy_upstream_src)
7375
googletest.main()
7476

7577

upstream_utils/memory.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@ def main():
100100
url = "https://github.com/foonathan/memory"
101101
tag = "v0.7-3"
102102

103-
memory = Lib(name, url, tag, [], copy_upstream_src)
103+
patch_list = []
104+
105+
memory = Lib(name, url, tag, patch_list, copy_upstream_src)
104106
memory.main()
105107

106108

0 commit comments

Comments
 (0)