mirror of
https://github.com/qwjyh/scoop_bucket.git
synced 2024-11-22 23:11:05 +09:00
9 lines
316 B
PowerShell
9 lines
316 B
PowerShell
param(
|
|
# overwrite upstream param
|
|
[String]$upstream = "qwjyh/scoop_bucket:main"
|
|
)
|
|
|
|
if (!$env:SCOOP_HOME) { $env:SCOOP_HOME = Convert-Path (scoop prefix scoop) }
|
|
$autopr = "$env:SCOOP_HOME/bin/auto-pr.ps1"
|
|
$dir = "$PSScriptRoot/../bucket" # checks the parent dir
|
|
& $autopr -Dir $dir -Upstream $Upstream @Args
|