Skip to content

Commit

Permalink
go114: Fix deprecated (un)install warnings (#1742)
Browse files Browse the repository at this point in the history
  • Loading branch information
brian6932 committed May 13, 2024
1 parent af50a92 commit 025b46d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bucket/go114.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
},
"extract_dir": "go",
"installer": {
"script": "add_first_in_path \"$env:USERPROFILE\\go\\bin\" $global"
"script": "Add-Path -Path \"$env:USERPROFILE\\go\\bin\" -Global:$global"
},
"uninstaller": {
"script": "remove_from_path \"$env:USERPROFILE\\go\\bin\" $global"
"script": "Remove-Path -Path \"$env:USERPROFILE\\go\\bin\" -Global:$global"
},
"bin": [
"bin\\go.exe",
Expand Down

0 comments on commit 025b46d

Please sign in to comment.