diff --git a/CreateHashList.ps1 b/CreateHashList.ps1 new file mode 100644 index 000000000..668c1c140 --- /dev/null +++ b/CreateHashList.ps1 @@ -0,0 +1,7 @@ +$hashes = @{} + +Get-ChildItem $args[0] -Exclude dalamud.txt,*.zip,*.pdb,*.ipdb | Foreach-Object { + $hashes.Add($_.Name, (Get-FileHash $_.FullName -Algorithm MD5).Hash) +} + +ConvertTo-Json $hashes | Out-File -FilePath (Join-Path $args[0] "hashes.json") \ No newline at end of file