From b60a60632d982ff807002048f89092ce0fc21edf Mon Sep 17 00:00:00 2001 From: Plamen Ivanov <65338982+k1lgor@users.noreply.github.com> Date: Sun, 2 Jul 2023 16:22:06 +0300 Subject: [PATCH] refactor(makefile): :recycle: remove repetitive command (#451) --- Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 98d9213..65ee829 100644 --- a/Makefile +++ b/Makefile @@ -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 ' where 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 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: