From c6baecf5d4eff23ea147f14df2d29bb10a13b7a5 Mon Sep 17 00:00:00 2001 From: Michael Prokop Date: Fri, 14 Jul 2023 17:24:45 +0200 Subject: [PATCH] MT#57855 venv deployments: append output to install.log file Instead of overwriting the install.log, let's append the output, to make sure we capture all its output during our deployments. Change-Id: I104694573cb5d94e33772df01d3d693539b188b5 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 36923e7..32844c0 100644 --- a/Makefile +++ b/Makefile @@ -9,12 +9,12 @@ SHELL = /bin/bash venv_prod: requirements/prod.txt virtualenv --python=python3 $(VAR_DIR)/venv_prod source $(VAR_DIR)/venv_prod/bin/activate && \ - pip3 install -r ./requirements/prod.txt | tee install.log + pip3 install -r ./requirements/prod.txt | tee -a install.log venv_dev: requirements/dev.txt virtualenv --python=python3 $(VAR_DIR)/venv_dev source $(VAR_DIR)/venv_dev/bin/activate && \ - pip3 install -r ./requirements/dev.txt | tee install.log + pip3 install -r ./requirements/dev.txt | tee -a install.log ################################### test: test_templates