Added a script automatically generating a virtual view using symbol links of the codebase

So I can finally have some folders for organization
This commit is contained in:
2024-05-12 16:02:38 -04:00
parent 1b32fe916e
commit f693685d72
7 changed files with 81 additions and 6 deletions

View File

@ -42,6 +42,11 @@ function Update-GitRepo
write-host "Cloining repo from $url to $path"
git clone $url $path
$path_scripts = join-path $path 'scripts'
push-locaiton $path_scripts
& .\build_and_run_gen_src_pass.ps1
pop-location
write-host "Building $url"
push-location $path
& "$build_command"
@ -66,6 +71,11 @@ function Update-GitRepo
write-host 'Pulling...'
git -C $path pull
$path_scripts = join-path $path 'scripts'
push-location $path_scripts
& .\build_and_run_gen_src_pass.ps1
pop-location
write-host "Building $url"
push-location $path
& $build_command