Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions bucket/proto.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"version": "0.52.5",
"description": "Proto is a pluggable version manager, a unified toolchain.",
"homepage": "https://moonrepo.dev/docs/proto",
"license": "MIT",
"architecture": {
"64bit": {
"url": "https://github.com/moonrepo/proto/releases/download/v0.52.5/proto_cli-x86_64-pc-windows-msvc.zip",
"hash": "fdf3b65bb60930a7f454cb164ea86040ea28a62b8ee586b67672b9a145c01dc7"
}
},
"persist": [
"bin"
],
"installer": {
"script": [
"# Create bin directory",
"New-Item -ItemType Directory -Force -Path \"$persist_dir\\bin\" | Out-Null",
"",
"# Move proto binaries into bin",
"Move-Item \"$dir\\proto.exe\" \"$persist_dir\\bin\\proto.exe\" -Force",
"if (Test-Path \"$dir\\proto-shim.exe\") {",
" Move-Item \"$dir\\proto-shim.exe\" \"$persist_dir\\bin\\proto-shim.exe\" -Force",
"}"
]
},
"env_set": {
"PROTO_HOME": "$persist_dir"
},
"env_add_path": "bin",
"checkver": {
"github": "https://github.com/moonrepo/proto"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/moonrepo/proto/releases/download/v$version/proto_cli-x86_64-pc-windows-msvc.zip"
}
},
"hash": {
"url": "$baseurl/proto_cli-x86_64-pc-windows-msvc.zip.sha256"
}
}
}
30 changes: 30 additions & 0 deletions bucket/vmr.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"version": "0.7.5",
"description": "VMR is a simple, cross-platform, and well-designed version manager for multiple sdks and tools.",
"homepage": "https://vdocs.vmr.dpdns.org",
"license": "MIT",
"architecture": {
"64bit": {
"url": "https://github.com/gvcgo/version-manager/releases/download/v0.7.5/vmr_windows-amd64.zip",
"hash": "8EEE6C8B2E8AF68184239CBC5FA3F2A49D1352B4E9E28A74206C5B374A42EEF7"
},
"arm64": {
"url": "https://github.com/gvcgo/version-manager/releases/download/v0.7.5/vmr_windows-arm64.zip",
"hash": "3D9FEBAB6A3BB68808F098A65FD26637D5B6FE402ECE258D79FC124104C14725"
}
},
"bin": "vmr.exe",
"checkver": {
"github": "https://github.com/gvcgo/version-manager"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/gvcgo/version-manager/releases/download/v$version/vmr_windows-amd64.zip"
},
"arm64": {
"url": "https://github.com/gvcgo/version-manager/releases/download/v$version/vmr_windows-arm64.zip"
}
}
}
}
Loading