Skip to content

Commit

Permalink
Merge pull request #868 from mandiant/pkg-unpacker-fix
Browse files Browse the repository at this point in the history
Fix pkg-unpacker powershell command
  • Loading branch information
Ana06 authored Mar 5, 2024
2 parents 4e5a5ba + 5560c1b commit a7711e0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/pkg-unpacker.vm/pkg-unpacker.vm.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>pkg-unpacker.vm</id>
<version>1.0.0.20231027</version>
<version>1.0.0.20240125</version>
<authors>LockBlock-dev</authors>
<description>Unpacker for pkg applications.</description>
<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion packages/pkg-unpacker.vm/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ try {
$category = 'Packers'
$zipUrl = 'https://github.com/LockBlock-dev/pkg-unpacker/archive/b1fd5200e1bf656dedef6817c177c8bb2dc38028.zip'
$zipSha256 = '6eed1d492d37ca3934a3bc838c2256719a3e78ccf72ce1b1ca07684519ace16c'
$powershellCommand = "Write-Output '> node unpack.js'; node unpack.js"
$powershellCommand = "npm install; node unpack.js"

$toolDir = VM-Install-Raw-GitHub-Repo $toolName $category $zipUrl $zipSha256 -powershellCommand $powershellCommand
} catch {
Expand Down

0 comments on commit a7711e0

Please sign in to comment.