UEPyScripts 1.2.6__tar.gz → 1.2.7__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of UEPyScripts might be problematic. Click here for more details.
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/PKG-INFO +1 -1
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/internal/engine_resolver.py +3 -1
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/.gitignore +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/LICENSE +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/README.md +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/pyproject.toml +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/__init__.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/context/__init__.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/internal/__init__.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/internal/config.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/internal/engine.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/internal/project.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/run/__init__.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/run/buildgraph.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/run/uat.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/run/ubt.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/tools/__init__.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/tools/ci/buildgraph.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/tools/ci/cleanup.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/tools/helpers.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/tools/subprocess.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/tools/ue/__init__.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/tools/ue/check_engine_installation.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/tools/ue/close_editor.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/tools/ue/compile_editor.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/tools/ue/engine_installation/engine_destination.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/tools/ue/engine_installation/engine_installer.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/tools/ue/engine_installation/engine_source.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/tools/ue/generate_solution.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/tools/ue/run_editor.py +0 -0
- {uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/tools/winreg.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: UEPyScripts
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.7
|
|
4
4
|
Summary: Collection of Python tools and helpers designed to automate common Unreal Engine project tasks (builds, packaging, editor control, CI tasks, etc.).
|
|
5
5
|
Project-URL: Changelog, https://github.com/TheEmidee/UEPyScripts/releases
|
|
6
6
|
Project-URL: Homepage, https://github.com/TheEmidee/UEPyScripts
|
|
@@ -76,7 +76,9 @@ def resolve_engine_from_path(project: Project) -> Optional[Path]:
|
|
|
76
76
|
if not os.path.isabs(path):
|
|
77
77
|
path = (project.root_folder / path).resolve()
|
|
78
78
|
|
|
79
|
-
|
|
79
|
+
# Check path exists otherwise we could return a semantically valid path to a folder which does not exist
|
|
80
|
+
# and that would make the resolve fail without trying resolvers which are further down in the list
|
|
81
|
+
if os.path.isabs(path) and path.exists():
|
|
80
82
|
return path
|
|
81
83
|
|
|
82
84
|
return None
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{uepyscripts-1.2.6 → uepyscripts-1.2.7}/src/uepyscripts/tools/ue/check_engine_installation.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|