Skip to content

Commit

Permalink
Version in VM-Install-with-Pip is mandatory, change PIP packages to i…
Browse files Browse the repository at this point in the history
…nclude version
  • Loading branch information
sara-rn committed Jan 17, 2025
1 parent c2c7a01 commit 27b6ab9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/autoit-ripper.vm/autoit-ripper.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>autoit-ripper.vm</id>
<version>0.0.0.20240607</version>
<version>1.1.2</version>
<authors>Michał Praszmo</authors>
<description>Extracts compiled AutoIt scripts from PE executables.</description>
<dependencies>
Expand Down
1 change: 1 addition & 0 deletions packages/autoit-ripper.vm/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ Import-Module vm.common -Force -DisableNameChecking

$toolName = 'autoit-ripper'
$category = 'Packers'
$version = '==1.1.2'

VM-Install-With-Pip -toolName $toolName -category $category
2 changes: 1 addition & 1 deletion packages/common.vm/tools/vm.common/vm.common.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -1761,7 +1761,7 @@ function VM-Install-With-Pip {
[string] $toolName, # Example: magika
[Parameter(Mandatory=$true)]
[string] $category,
[Parameter(Mandatory=$false)]
[Parameter(Mandatory=$true)]
[string] $version = "", # Version using pip format, example: "==0.5.0"
[Parameter(Mandatory=$false)]
[string] $arguments = "--help"
Expand Down
1 change: 1 addition & 0 deletions packages/ipython.vm/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@ Import-Module vm.common -Force -DisableNameChecking

$toolName = 'ipython'
$category = 'Productivity Tools'
$version = '==8.27.0'

VM-Install-With-Pip -toolName $toolName -category $category -arguments ""

0 comments on commit 27b6ab9

Please sign in to comment.