Skip to content

Commit

Permalink
[email protected]: Fix (un)install scripts (#9603)
Browse files Browse the repository at this point in the history
  • Loading branch information
HUMORCE authored Oct 29, 2022
1 parent c71d43f commit 29b27cd
Showing 1 changed file with 22 additions and 18 deletions.
40 changes: 22 additions & 18 deletions bucket/ida-free.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,32 @@
"architecture": {
"64bit": {
"url": "https://out7.hex-rays.com/files/idafree81_windows.exe",
"hash": "sha1:666df4d5e32b26e7f0fae5c18beed9c58bcd9cc7",
"bin": "ida64.exe",
"shortcuts": [
[
"ida64.exe",
"IDA Freeware"
]
]
"hash": "sha1:666df4d5e32b26e7f0fae5c18beed9c58bcd9cc7"
}
},
"pre_install": "if (!(is_admin)) { throw 'Administrator privileges are required' }",
"installer": {
"args": [
"--mode unattended",
"--unattendedmodeui minimal",
"--installpassword freeware",
"--prefix \"$dir\""
"--mode",
"unattended",
"--prefix",
"$dir"
]
},
"bin": "ida64.exe",
"shortcuts": [
[
"ida64.exe",
"IDA Freeware"
]
],
"pre_uninstall": "if (!(is_admin)) { throw 'Administrator privileges are required' }",
"uninstaller": {
"file": "uninstall.exe",
"args": "--mode unattended"
"args": [
"--mode",
"unattended"
]
},
"checkver": {
"url": "https://hex-rays.com/ida-free/#download",
Expand All @@ -36,12 +40,12 @@
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://out7.hex-rays.com/files/idafree$majorVersion$minorVersion_windows.exe"
"url": "https://out7.hex-rays.com/files/idafree$majorVersion$minorVersion_windows.exe",
"hash": {
"url": "https://hex-rays.com/ida-free/#download",
"regex": "$sha1\\s+$basename"
}
}
},
"hash": {
"url": "https://hex-rays.com/ida-free/#download",
"regex": "$sha1\\s+$basename"
}
}
}

0 comments on commit 29b27cd

Please sign in to comment.