Skip to content

Commit

Permalink
Add capesolo.vm
Browse files Browse the repository at this point in the history
Add the parameter -arguments to VM-Install_with-Pip so it runs without arguments.
The default parameter is `--help` which doesn't exist in capesolo.
  • Loading branch information
vm-packages authored and sara-rn committed Jan 27, 2025
1 parent b86fdc2 commit 740b7fa
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
13 changes: 13 additions & 0 deletions packages/capesolo.vm/capesolo.vm.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>capesolo.vm</id>
<version>0.4.23</version>
<authors>kevoreilly, enzok, doomedraven</authors>
<description>Standalone sandbox tool with unpacker and debugger</description>
<dependencies>
<dependency id="common.vm" version="0.0.0.20241209" />
<dependency id="python3.vm" />
</dependencies>
</metadata>
</package>
8 changes: 8 additions & 0 deletions packages/capesolo.vm/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
$ErrorActionPreference = 'Stop'
Import-Module vm.common -Force -DisableNameChecking

$toolName = 'CAPEsolo'
$category = 'Debuggers'
$version = '==0.4.23'

VM-Install-With-Pip -toolName $toolName -category $category -version $version -arguments ""
7 changes: 7 additions & 0 deletions packages/capesolo.vm/tools/chocolateyuninstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
$ErrorActionPreference = 'Continue'
Import-Module vm.common -Force -DisableNameChecking

$toolName = 'CAPEsolo'
$category = 'Debuggers'

VM-Uninstall-With-Pip $toolName $category

0 comments on commit 740b7fa

Please sign in to comment.