Skip to content

Commit

Permalink
Revert "fix(multiple): Change Expand-DarkArchive parameter order (#56)"
Browse files Browse the repository at this point in the history
This reverts commit 0f0c408.
  • Loading branch information
r15ch13 authored May 15, 2019
1 parent 0f0c408 commit d390697
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions bucket/mro.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"hash": "296ff6358d3d9db6723cc7643778b1bf0cf6a3a7492438db4d3a31037391db56",
"installer": {
"script": [
"Expand-DarkArchive \"$dir\\$fname\" \"$dir\\_tmp\"",
"Expand-MsiArchive \"$dir\\_tmp\\AttachedContainer\\ROpen.msi\" \"$dir\\_tmp\"",
"Expand-DarkArchive \"$dir\\_tmp\" \"$dir\\$fname\" | Out-Null",
"Expand-MsiArchive \"$dir\\_tmp\\AttachedContainer\\ROpen.msi\" \"$dir\\_tmp\" | Out-Null",
"movedir \"$dir\\_tmp\\Microsoft\\MRO-$version.0\" \"$dir\" | Out-Null",
"Expand-7zipArchive \"$dir\\Setup\\*.cab\" \"$dir\\Setup\"",
"Remove-Item \"$dir\\bin\\x64\\Rblas.dll\", \"$dir\\bin\\x64\\Rlapack.dll\" -Force",
Expand Down
8 changes: 4 additions & 4 deletions bucket/plex-server.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@
"identifier": "Proprietary",
"url": "https://support.plex.tv/articles/204096476-license-information/"
},
"url": "https://downloads.plex.tv/plex-media-server-new/1.15.4.994-107756f7e/windows/PlexMediaServer-1.15.4.994-107756f7e-x86.exe",
"url": "https://downloads.plex.tv/plex-media-server-new/1.15.4.994-107756f7e/windows/PlexMediaServer-1.15.4.994-107756f7e-x86.exe#/installer.exe",
"hash": "sha1:caeb12ae1080db20c11a86dba3b3e9b2e7bffc6d",
"installer": {
"script": [
"$extracted = \"$dir\\extracted\"",
"$msi = \"$dir\\msi\"",
"Expand-DarkArchive \"$dir\\$fname\" \"$extracted\"",
"Expand-DarkArchive \"$extracted\" \"$dir\\installer.exe\" | Out-Null",
"Expand-MsiArchive \"$extracted\\AttachedContainer\\pms.msi\" \"$msi\"",
"Move-Item \"$msi\\Msi\\*\" \"$dir\" -Force",
"Remove-Item $extracted, $msi, \"$dir\\$fname\" -Force -Recurse"
"Remove-Item $extracted, $msi, \"$dir\\installer.exe\" -Force -Recurse"
]
},
"bin": [
Expand All @@ -36,7 +36,7 @@
"jsonpath": "$.computer.windows.version"
},
"autoupdate": {
"url": "https://downloads.plex.tv/plex-media-server-new/$version/windows/PlexMediaServer-$version-x86.exe",
"url": "https://downloads.plex.tv/plex-media-server-new/$version/windows/PlexMediaServer-$version-x86.exe#/installer.exe",
"hash": {
"url": "https://plex.tv/api/downloads/1.json",
"jsonpath": "$.computer.Windows.releases..checksum"
Expand Down
2 changes: 1 addition & 1 deletion bucket/python.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
},
"installer": {
"script": [
"Expand-DarkArchive \"$dir\\$fname\" \"$dir\\_tmp\"",
"Expand-DarkArchive \"$dir\\_tmp\" \"$dir\\$fname\" | Out-Null",
"@('launcher.msi', 'path.msi', 'pip.msi') | ForEach-Object {",
" Remove-Item \"$dir\\_tmp\\AttachedContainer\\$_\"",
"}",
Expand Down

0 comments on commit d390697

Please sign in to comment.