6 lines
257 B
PowerShell
6 lines
257 B
PowerShell
$ErrorActionPreference = "Stop"
|
|
$scriptDir = $PSScriptRoot
|
|
Set-Location -LiteralPath $scriptDir
|
|
$exe = Join-Path $scriptDir "gitea-1.26.4-windows-4.0-amd64.exe"
|
|
$config = Join-Path $scriptDir "conf\app.ini"
|
|
& $exe web --config $config --work-path $scriptDir |