diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/deploybuild.py | 4 |
1 files changed, 2 insertions, 2 deletions
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) |