From 387dd1e43ae58a2e120b3aef1b091b0b99f6463f Mon Sep 17 00:00:00 2001 From: jackalbe <23512001+jackalbe@users.noreply.github.com> Date: Mon, 19 Apr 2021 11:09:55 -0500 Subject: [PATCH] normalizing Linux path --- .../Gem/PythonTests/PythonAssetBuilder/mock_asset_builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/mock_asset_builder.py b/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/mock_asset_builder.py index c60871ac46..ab033dc57f 100644 --- a/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/mock_asset_builder.py +++ b/AutomatedTesting/Gem/PythonTests/PythonAssetBuilder/mock_asset_builder.py @@ -48,7 +48,7 @@ def on_create_jobs(args): def process_file(request): # prepare output folder basePath, _ = os.path.split(request.sourceFile) - outputPath = os.path.join(request.tempDirPath, basePath) + outputPath = os.path.join(request.tempDirPath, basePath).lower() os.makedirs(outputPath, exist_ok=True) # write out a mock file