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:
Marcin Kłopotek 2022-08-11 15:52:27 +02:00 committed by GitHub
parent 16abaa4e1c
commit 5c49d24866
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"