From 733002482fd0661f0b8629fd35a82867b5816bd0 Mon Sep 17 00:00:00 2001 From: Jonathan Teran Carballo Date: Sun, 2 Nov 2025 12:40:42 -0300 Subject: [PATCH] bugfix: cambio llamada a pip en pipeline --- bitbucket-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index dd23e55..b05ede8 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -5,12 +5,12 @@ pipelines: name: "Tag dev" script: - cd $BITBUCKET_CLONE_DIR - - pip install -r requirements.txt + - python -m pip install -r requirements.txt - ./git-flow tag $BEARER 'main': - step: name: "Tag main" script: - cd $BITBUCKET_CLONE_DIR - - pip install -r requirements.txt + - python -m pip install -r requirements.txt - ./git-flow tag $BEARER