Skip to content

Commit

Permalink
Quiet plugin installation + release 0.9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaspatzke committed Feb 18, 2023
1 parent ee86293 commit d75e0d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pySigma"
version = "0.9.2"
version = "0.9.3"
license = "LGPL-2.1-only"
description = "Sigma rule processing and conversion tools"
authors = ["Thomas Patzke <[email protected]>"]
Expand Down
4 changes: 2 additions & 2 deletions sigma/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,11 +127,11 @@ def is_compatible(self) -> Optional[bool]:

def install(self):
"""Install plugin with pip."""
subprocess.check_call([sys.executable, "-m", "pip", "install", self.package])
subprocess.check_call([sys.executable, "-m", "pip", "-q", "install", self.package])

def uninstall(self):
"""Uninstall plugin with pip."""
subprocess.check_call([sys.executable, "-m", "pip", "uninstall", "-y", self.package])
subprocess.check_call([sys.executable, "-m", "pip", "-q", "uninstall", "-y", self.package])

@dataclass
class SigmaPluginDirectory:
Expand Down

0 comments on commit d75e0d4

Please sign in to comment.