mirror of
https://github.com/ScoopInstaller/Main.git
synced 2025-11-04 15:51:23 +00:00
xmlstarlet: *nix compatibility (#3814)
Xmlstarlet is distributed as `xmlstarlet` binary under *nix systems but on Windows, it is installed as `xml`. This causes issues with scripts portability between the systems. Adding additional `xmlstarlet` alias to the existing `xml` binary solves the issue.
This commit is contained in:
parent
16abaa4e1c
commit
5c49d24866
@ -6,7 +6,10 @@
|
||||
"url": "https://downloads.sourceforge.net/project/xmlstar/xmlstarlet/1.6.1/xmlstarlet-1.6.1-win32.zip",
|
||||
"hash": "sha1:cc5f5cd17a1f81740e5185a70408ffd6fa2f862d",
|
||||
"extract_dir": "xmlstarlet-1.6.1",
|
||||
"bin": "xml.exe",
|
||||
"bin": [
|
||||
"xml.exe",
|
||||
["xml.exe", "xmlstarlet"]
|
||||
],
|
||||
"checkver": {
|
||||
"url": "https://sourceforge.net/projects/xmlstar/files/",
|
||||
"regex": "xmlstarlet-([\\d.]+)-win"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user