mirror of
https://github.com/ScoopInstaller/Main.git
synced 2025-11-03 15:21:18 +00:00
nim, stack: Fix deprecated (un)install warnings (#5824)
This commit is contained in:
parent
dae8bc27d9
commit
32c862c54b
@ -51,9 +51,9 @@
|
||||
}
|
||||
},
|
||||
"installer": {
|
||||
"script": "add_first_in_path \"$env:USERPROFILE\\.nimble\\bin\" $global"
|
||||
"script": "Add-Path -Path \"$env:USERPROFILE\\.nimble\\bin\" -Global:$global"
|
||||
},
|
||||
"uninstaller": {
|
||||
"script": "remove_from_path \"$env:USERPROFILE\\.nimble\\bin\" $global"
|
||||
"script": "Remove-Path -Path \"$env:USERPROFILE\\.nimble\\bin\" -Global:$global"
|
||||
}
|
||||
}
|
||||
|
||||
@ -11,10 +11,10 @@
|
||||
},
|
||||
"bin": "stack.exe",
|
||||
"installer": {
|
||||
"script": "add_first_in_path \"$env:APPDATA\\local\\bin\" $global"
|
||||
"script": "Add-Path -Path \"$env:APPDATA\\local\\bin\" -Global:$global"
|
||||
},
|
||||
"uninstaller": {
|
||||
"script": "remove_from_path \"$env:APPDATA\\local\\bin\" $global"
|
||||
"script": "Remove-Path -Path \"$env:APPDATA\\local\\bin\" -Global:$global"
|
||||
},
|
||||
"checkver": {
|
||||
"github": "https://github.com/commercialhaskell/stack"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user