From 2addec065ec55615ee185f6fd01d48f62fdebc07 Mon Sep 17 00:00:00 2001 From: Gabriele Sarti Date: Fri, 16 Feb 2024 16:52:31 +0100 Subject: [PATCH] Add shell var back --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7c0444ec..d8bcef56 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,5 @@ #* Variables +SHELL := /bin/bash PYTHON := .venv/bin/python #* Docker variables @@ -41,7 +42,7 @@ uv-download: .PHONY: uv-activate uv-activate: @if [[ "$(OS)" == "Windows_NT" ]]; then \ - ./uv/Scripts/activate.ps1; \ + ./uv/Scripts/activate.ps1 \ else \ source .venv/bin/activate; \ fi