refactor(makefile): ♻️ remove repetitive command (#451)

This commit is contained in:
Plamen Ivanov
2023-07-02 16:22:06 +03:00
committed by GitHub
parent d4e9ba9270
commit b60a60632d

View File

@@ -5,7 +5,7 @@ COLOR_RESET=\033[0m
COLOR_CYAN=\033[1;36m
COLOR_GREEN=\033[1;32m
.PHONY: help install dev-install run
.PHONY: help install run
.DEFAULT_GOAL := help
@@ -17,11 +17,8 @@ help:
@echo "Please use 'make <target>' where <target> is one of the following:"
@echo " help Return this message with usage instructions."
@echo " install Will install the dependencies and create a virtual environment."
@echo " dev-install Will install the dev dependencies too."
@echo " run <folder_name> Runs GPT Engineer on the folder with the given name."
dev-install: install
install: create-venv upgrade-pip install-dependencies install-pre-commit farewell
create-venv: