Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mise: Add Version 2024.12.22 #6374

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
52 changes: 52 additions & 0 deletions bucket/mise-en-place.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"version": "2024.12.4",
"description": "Mise-En-Place installs and manages dev tools/runtimes like node, python, or terraform both simplifying installing these tools and allowing you to specify which version of these tools to use in different projects.",
"homepage": "https://mise.jdx.dev/",
"license": "MIT",
"architecture": {
"64bit": {
"url": "https://github.com/jdx/mise/releases/download/v2024.12.4/mise-v2024.12.4-windows-x64.zip",
"hash": "d9d354b620d7d60053f4b091562ed9135b7a2d595bf92c63d1957723bcf02a9a"
},
"arm64": {
"url": "https://github.com/jdx/mise/releases/download/v2024.12.4/mise-v2024.12.4-windows-arm64.zip",
"hash": "cccd7071d90d0e10d04baf40e6dfa57d7e9e4d9f264c76ad3dd8992bf4155185"
}
},
"bin": "mise/bin/mise.exe",
"checkver": {
"github": "https://github.com/jdx/mise"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/jdx/mise/releases/download/v$version/mise-v$version-windows-x64.zip"
},
"arm64": {
"url": "https://github.com/jdx/mise/releases/download/v$version/mise-v$version-windows-arm64.zip"
}
},
"hash": {
"url": "$baseurl/SHASUMS256.txt"
}
},
"installer": {
"script": "Add-Path -Path \"$env:LOCALAPPDATA\\mise\\shims\" -Global:$global"
},
"uninstaller": {
"script": "Remove-Path -Path \"$env:LOCALAPPDATA\\mise\\shims\" -Global:$global"
},
"post_uninstall": [
"if ($purge) {",
" $Directories = [string[]](",
" ('{0}\\mise' -f $env:LOCALAPPDATA),",
" ('{0}\\Temp\\mise' -f $env:LOCALAPPDATA)",
" )",
" $Directories.ForEach{",
" if (Test-Path -Path $_ -PathType 'Container') {",
" $null = Remove-Item -Path $_ -Recurse -Force",
" }",
" }",
"}"
]
}