gameboosthd: Fix installation for PowerShell 5

PowerShell 5 does not support wildcard(*) for Rename-Item
This commit is contained in:
Issac Lin 2022-08-06 13:14:35 +08:00 committed by GitHub
parent 440060da58
commit e92c58d06a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,6 @@
},
"url": "https://r1ch.net/assets/gameboosthd/gameboosthd-1.4.zip",
"hash": "6f23373ebfba028255d103185785bb140016d4dde0363bca11c28bb7527c5130",
"pre_install": "Rename-Item \"$dir\\*.exe\" 'gameboosthd.exe'",
"pre_install": "Get-ChildItem \"$dir\\*.exe\" | Rename-Item -NewName 'gameboosthd.exe'",
"bin": "gameboosthd.exe"
}