Improvements to build scripts

This commit is contained in:
2024-03-01 15:23:32 -05:00
parent 77449819af
commit 1e5773e486
2 changed files with 34 additions and 6 deletions

View File

@ -71,3 +71,12 @@ function check-ModuleForChanges
}
return $false
}
function mark-ModuleDirty {
param( [string]$path_module )
$module_name = split-path $path_module -leaf
$path_csv = Join-Path $path_build ($module_name + "_module_hashes.csv")
remove-item -Force -Path $path_csv
}