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:
@ -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
|
||||
|
Reference in New Issue
Block a user