6
0
mirror of https://github.com/grdl/git-get.git synced 2026-02-05 09:03:48 +00:00

Add missing git-list shim in scoop, ensure the shim is deleted when git-get is uninstalled

This commit is contained in:
Grzegorz Dlugoszewski
2025-08-24 11:30:22 +02:00
parent 4c9cbcaf96
commit ec99227420

View File

@@ -130,5 +130,9 @@ scoops:
description: "Better way to clone, organize and manage multiple git repositories"
license: MIT
post_install: [
"New-Item -ItemType HardLink -Path \"$dir\\git-list.exe\" -Target \"$dir\\git-get.exe\" -Force | Out-Null"
"New-Item -ItemType HardLink -Path \"$dir\\git-list.exe\" -Target \"$dir\\git-get.exe\" -Force | Out-Null",
"scoop shim add git-list \"$dir\\git-list.exe\""
],
post_uninstall: [
"scoop shim rm git-list"
]