4 lines
198 B
PowerShell
4 lines
198 B
PowerShell
# PowerShell script to run gradle project
|
|
$CurrentPath = $PSScriptRoot
|
|
Start-Process -FilePath "cmd.exe" -ArgumentList "/c pushd `"$CurrentPath`" && call gradlew.bat run && popd" -Wait -NoNewWindow
|