From 3db65e49831ec235b658a0faded93e40bcc54836 Mon Sep 17 00:00:00 2001 From: Zousar Shaker Date: Tue, 4 Jan 2022 15:37:35 -0700 Subject: Fix issues with deployment python script due to removal of sln files. --- scripts/deploybuild.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/deploybuild.py b/scripts/deploybuild.py index d137c3da1..4327d14f7 100644 --- a/scripts/deploybuild.py +++ b/scripts/deploybuild.py @@ -46,7 +46,7 @@ if not os.path.isfile(os.path.join(engineroot, "RunUAT.bat")): zenroot = __file__ -while not os.path.exists(os.path.join(zenroot, "zen.sln")): +while not os.path.exists(os.path.join(zenroot, "deploy_build.bat")): zenroot = os.path.dirname(zenroot) jazz_print("Zen root:", zenroot) @@ -61,7 +61,7 @@ try: vs_path = vswhere.get_latest_path() # can also specify prerelease=True jazz_print("BUILDING CODE", f"using VS root: {vs_path}") devenv_path = os.path.join(vs_path, "Common7\\IDE\\devenv.com") - build_cmd = [devenv_path, "/build", "Release", "zen.sln"] + build_cmd = [devenv_path, "/build", "Release", "vsxmake2019\\zen.sln"] build_output_dir = r'x64\Release' subprocess.run(build_cmd, check=True) -- cgit v1.2.3