Skip to content

Commit

Permalink
chore: bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HaiyiMei committed Aug 5, 2024
1 parent c349a03 commit 9c5a3dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .circleci/continue_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ jobs:
PYTHONIOENCODING: "utf-8"
command: |
echo "#### Get Unreal Engine ####"
$UE_51 = if (Test-Path env:$UE_51) { $env:UE_51 } else {
$UE_51 = if (Test-Path $env:UE_51) { $env:UE_51 } else {
"C:/Program Files/Epic Games/UE_5.1/Engine/Binaries/Win64/UnrealEditor-Cmd.exe"
}
$UE_52 = if (Test-Path env:$UE_52) { $env:UE_52 } else {
$UE_52 = if (Test-Path $env:UE_52) { $env:UE_52 } else {
"C:/Program Files/Epic Games/UE_5.2/Engine/Binaries/Win64/UnrealEditor-Cmd.exe"
}
$UE_53 = if (Test-Path env:$UE_53) { $env:UE_53 } else {
$UE_53 = if (Test-Path $env:UE_53) { $env:UE_53 } else {
"C:/Program Files/Epic Games/UE_5.3/Engine/Binaries/Win64/UnrealEditor-Cmd.exe"
}
echo "#### Install XRFeitoria Package ####"
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,7 @@ Thumbs.db

# Plugins
src/*.zip
src/XRFeitoriaUnreal-*/
src/XRFeitoriaUnreal/Binaries/

# Configs
Expand Down

0 comments on commit 9c5a3dc

Please sign in to comment.