Progress on porting fontstash

This commit is contained in:
2024-06-02 17:29:27 -04:00
parent 9ba718254c
commit 33ddd420b7
10 changed files with 115 additions and 38 deletions

View File

@ -41,7 +41,7 @@ function check-ModuleForChanges
param( [string]$path_module, [array]$excludes )
$module_name = split-path $path_module -leaf
$path_csv = Join-Path $path_build ($module_name + "_module_hashes.csv")
$path_csv = Join-Path $path_build ("module_" + $module_name + "_hashes.csv")
$csv_file_hashes = $null
if ( test-path $path_csv ) {
@ -76,7 +76,7 @@ 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")
$path_csv = Join-Path $path_build ("module_" + $module_name + "_hashes.csv")
remove-item -Force -Path $path_csv
}