Skip to content

Commit ca8eccb

Browse files
committed
Correct generate paths
1 parent 60b253f commit ca8eccb

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

eng/scripts/generate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_root_dir():
1616

1717
source_directories = [
1818
os.path.join(root_dir, "src"),
19-
os.path.join(root_dir, "src", "dlr", "Src"),
19+
os.path.join(root_dir, "src", "dlr", "src"),
2020
]
2121

2222
exclude_directories = [

eng/scripts/generate_exception_factory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ def gen_expr_factory_com(cw):
172172
gen_expr_factory(cw, generate.root_dir + "\\..\\..\\ndp\\fx\\src\\Dynamic\\System\\Dynamic\\System.Dynamic.txt")
173173

174174
def gen_expr_factory_scripting(cw):
175-
gen_expr_factory(cw, generate.root_dir + "\\src\\dlr\\Src\\Microsoft.Dynamic\\Microsoft.Scripting.txt")
175+
gen_expr_factory(cw, generate.root_dir + "\\src\\dlr\\src\\Microsoft.Dynamic\\Microsoft.Scripting.txt")
176176

177177
def main():
178178
return generate.generate(

src/core/IronPython/Lib/iptest/ipunittest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,8 @@ def generate_suite(tests, failing_tests, skip_tests=[]):
234234
# if not rowan_root:
235235
# rowan_root = sys.prefix
236236
# if is_cli:
237-
# if System.IO.Directory.Exists(path_combine(rowan_root, '../../Src')):
238-
# basePyDir = '../../Src'
237+
# if System.IO.Directory.Exists(path_combine(rowan_root, '../../src')):
238+
# basePyDir = '../../src'
239239

240240
# # get some directories and files
241241
# ip_root = path_combine(rowan_root, basePyDir)

0 commit comments

Comments
 (0)