Fixes to build scripts
This commit is contained in:
@ -35,7 +35,7 @@ if (Test-Path -Path $path_odin)
|
||||
& .\build.bat
|
||||
pop-location
|
||||
|
||||
$binaries_dirty = true
|
||||
$binaries_dirty = $true
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -51,14 +51,14 @@ else
|
||||
& .\build.bat
|
||||
pop-location
|
||||
|
||||
$binaries_dirty = true
|
||||
$binaries_dirty = $true
|
||||
}
|
||||
|
||||
$path_vendor = join-path $path_odin 'vendor'
|
||||
$path_vendor_raylib = join-path $path_vendor 'raylib'
|
||||
$path_raylib_dlls = join-path $path_vendor_raylib 'windows'
|
||||
|
||||
if ( $binaries_dirty )
|
||||
if ( $binaries_dirty -or $true )
|
||||
{
|
||||
$third_party_dlls = Get-ChildItem -Path $path_raylib_dlls -Filter '*.dll'
|
||||
foreach ($dll in $third_party_dlls) {
|
||||
|
Reference in New Issue
Block a user