Skip to content

Commit

Permalink
feat: Updated src/tools/pnpm.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] authored Jan 11, 2024
1 parent a2cef23 commit 23f6238
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tools/pnpm.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# src/tools/pnpm.py
# src/tools/apt.py

import subprocess


def execute_pnpm_command(command: str) -> str:
def execute_apt_command(command: str) -> str:
try:
result = subprocess.run(["pnpm", *command.split()], capture_output=True, text=True, check=True)
return result.stdout.strip()
Expand Down

0 comments on commit 23f6238

Please sign in to comment.