11 lines
245 B
PowerShell
Raw Normal View History

2024-07-15 15:05:31 -04:00
# Script to run the tcg_rim_tool in java
$JavaParams = @{
FilePath = 'java'
ArgumentList = @(
2024-07-17 14:27:26 -04:00
'-jar "{0}"' -f "$PWD\tcg_rim_tool/tcg_rim_tool.jar"
2024-07-15 15:05:31 -04:00
"$args"
)
}
Start-Process @JavaParams -NoNewWindow -Wait