ScoopBucket/bin/auto-pr.ps1

10 lines
321 B
PowerShell
Raw Normal View History

2021-12-27 19:22:24 +01:00
param(
# overwrite upstream param
[String]$upstream = "<username>/<bucketname>:main"
)
2022-11-15 06:15:15 +01:00
if (!$env:SCOOP_HOME) { $env:SCOOP_HOME = Convert-Path (scoop prefix scoop) }
2021-12-27 19:22:24 +01:00
$autopr = "$env:SCOOP_HOME/bin/auto-pr.ps1"
$dir = "$PSScriptRoot/../bucket" # checks the parent dir
2022-11-15 06:15:15 +01:00
& $autopr -Dir $dir -Upstream $Upstream @Args