update deps scripts (keep the check for updating the repo manually

This commit is contained in:
Edward R. Gonzalez 2025-01-23 00:05:54 -05:00
parent 066ca97025
commit 55f7976baa

View File

@ -35,8 +35,8 @@ write-host
$path_ue_git = join-path $path_ue '.git' $path_ue_git = join-path $path_ue '.git'
# If its a clean project, need to do first-time setup # If its a clean project, need to do first-time setup
# if ((test-path $path_ue_git) -eq $true) if ((test-path $path_ue_git) -eq $true)
# { {
write-host 'UE not found, pulling...' write-host 'UE not found, pulling...'
$url_ue_repo = 'https://github.com/EpicGames/UnrealEngine.git' $url_ue_repo = 'https://github.com/EpicGames/UnrealEngine.git'
@ -71,10 +71,10 @@ $path_ue_git = join-path $path_ue '.git'
invoke-git $init_submodules invoke-git $init_submodules
write-host "UE repo updated`n" write-host "UE repo updated`n"
# } }
# else { else {
# write-host "Found existing UE repo, manage manually for updates`n" write-host "Found existing UE repo, manage manually for updates`n"
# } }
function Process-UnrealDeps function Process-UnrealDeps
{ {