Skip to content

Commit f03e7fe

Browse files
committed
Merge branch 'main' into next
2 parents 44aaa88 + a4a4e31 commit f03e7fe

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed
File renamed without changes.

Makefile

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
21
SHELL := /bin/bash
3-
REPO_NAME := agentic-ai-workflow
2+
export PATH := /usr/local/bin:$(PATH)
3+
export
44

55
ifeq ($(OS),Windows_NT)
6-
PYTHON = python.exe
7-
ACTIVATE_VENV = venv\Scripts\activate
6+
PYTHON := python.exe
7+
ACTIVATE_VENV := venv\Scripts\activate
88
else
9-
PYTHON = python3.13
10-
ACTIVATE_VENV = source venv/bin/activate
9+
PYTHON := python3.13
10+
ACTIVATE_VENV := source venv/bin/activate
1111
endif
12-
PIP = $(PYTHON) -m pip
12+
PIP := $(PYTHON) -m pip
1313

1414
ifneq ("$(wildcard .env)","")
15-
include .env
15+
include .env
1616
else
17-
$(shell cp .env-example .env)
17+
$(shell cp .env.example .env)
1818
endif
1919

2020
.PHONY: analyze pre-commit init lint tear-down test build release
@@ -44,8 +44,7 @@ init:
4444
$(PYTHON) -m venv venv && \
4545
$(ACTIVATE_VENV) && \
4646
$(PIP) install --upgrade pip && \
47-
$(PIP) install -r requirements/base.txt && \
48-
deactivate
47+
$(PIP) install -r requirements/base.txt
4948

5049
# ---------------------------------------------------------
5150
# create python virtual environments for dev

0 commit comments

Comments
 (0)