Skip to content

Commit

Permalink
release version 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
binary-sky committed Dec 21, 2022
1 parent 9b9b1fb commit d0f0a85
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions BuildlinuxRender.py → BuildLinuxRender.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import subprocess, sys, shutil, time, os

EnginePath = "C:/UnrealEngine/UnrealEngine-4.27.2-release/Engine"
assert os.path.exists(EnginePath)
EnginePath = "F:/UnrealSourceCode/UnrealEngine-4.27.2-release/Engine"
assert os.path.exists(EnginePath), f"Cannot find Unreal Engine at this path {EnginePath}"
Windows_Only = False
Build = 'Test' # Development/Test/shipping
Platform = 'Linux' # Win64/Linux
Expand Down
4 changes: 2 additions & 2 deletions BuildLinuxServer.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import subprocess, sys, shutil, time, os

EnginePath = "C:/UnrealEngine/UnrealEngine-4.27.2-release/Engine"
assert os.path.exists(EnginePath)
EnginePath = "F:/UnrealSourceCode/UnrealEngine-4.27.2-release/Engine"
assert os.path.exists(EnginePath), f"Cannot find Unreal Engine at this path {EnginePath}"
Windows_Only = False
Build = 'Test' # Development/Test/shipping
Platform = 'Linux' # Win64/Linux
Expand Down
4 changes: 2 additions & 2 deletions BuildWindowsRender.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import subprocess, sys, shutil, time, os

EnginePath = "C:/UnrealEngine/UnrealEngine-4.27.2-release/Engine"
assert os.path.exists(EnginePath)
EnginePath = "F:/UnrealSourceCode/UnrealEngine-4.27.2-release/Engine"
assert os.path.exists(EnginePath), f"Cannot find Unreal Engine at this path {EnginePath}"
Windows_Only = False
Build = 'Test' # Development/Test/shipping
Platform = 'Win64' # Win64/Linux
Expand Down
4 changes: 2 additions & 2 deletions BuildWindowsServer.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import subprocess, sys, shutil, time, os

EnginePath = "C:/UnrealEngine/UnrealEngine-4.27.2-release/Engine"
assert os.path.exists(EnginePath)
EnginePath = "F:/UnrealSourceCode/UnrealEngine-4.27.2-release/Engine"
assert os.path.exists(EnginePath), f"Cannot find Unreal Engine at this path {EnginePath}"
Windows_Only = False
Build = 'Test' # Development/Test/shipping
Platform = 'Win64' # Win64/Linux
Expand Down
2 changes: 1 addition & 1 deletion current_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.5
3.6
2 changes: 1 addition & 1 deletion upload_big_file.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os, time
import commentjson as json
from onedrive_util import OneDrive
from onedrive_util import OneDrive # pip install Office365-REST-Python-Client
from datetime import datetime

# https://pypi.org/project/onedrive-sharepoint/
Expand Down

0 comments on commit d0f0a85

Please sign in to comment.