From 7edcf8b886aeced38c8b1e0902801b1df53db6ac Mon Sep 17 00:00:00 2001 From: Ali Mosallaei Date: Mon, 22 Jul 2024 09:38:00 -0700 Subject: [PATCH] Fix installing with version tag --- src/fppm/cli/commands/install.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/fppm/cli/commands/install.py b/src/fppm/cli/commands/install.py index 05a4817..9fb8470 100644 --- a/src/fppm/cli/commands/install.py +++ b/src/fppm/cli/commands/install.py @@ -217,9 +217,7 @@ def install_package(args, context): [ "git", "checkout", - f"tags/{packageVersion}", - "--branch", - package["info"]["branch"], + f"tags/{packageVersion}" ], stderr=subprocess.PIPE, stdout=subprocess.PIPE,