1 Star 0 Fork 0

周魏/omniparser

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
cli.ps1 566 Bytes
一键复制 编辑 原始数据 按行查看 历史
sivan-koren 提交于 2021-09-07 11:45 . Create cli.ps1 (#151)
##Built in PowerShell v5.1, but should work in any version.
$CUR_DIR = Get-Location | Select-Object -ExpandProperty Path
$SCRIPT_DIR = $PSScriptRoot
$date = [DateTimeOffset]::Now.ToUnixTimeSeconds()
Set-Location $SCRIPT_DIR
go build -o $CUR_DIR\op.exe -ldflags "-X main.gitCommit=$(git rev-parse HEAD) -X main.buildEpochSec=$date" "$SCRIPT_DIR\\cli\\op.go"
if ($?) {
Set-Location $CUR_DIR
$opargs = './op.exe ' + $args -join " "
Invoke-Expression $opargs
} else {
Write-Host "Failed to build op.exe. cli.ps1 may not be working correctly."
Exit
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zwhx/omniparser.git
git@gitee.com:zwhx/omniparser.git
zwhx
omniparser
omniparser
master

搜索帮助