From d78816590fcb938f53ded8ce45348591bb8f185c Mon Sep 17 00:00:00 2001 From: Matt Mueller Date: Fri, 2 Sep 2022 22:24:25 -0500 Subject: [PATCH] Makefile: default to install when running 'make'. Closes: #265 (#272) --- Makefile | 1 + contributing/Readme.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 657176de..44274929 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,6 @@ BUD_VERSION := $(shell cat version.txt) +default: install precommit: test.dev ## diff --git a/contributing/Readme.md b/contributing/Readme.md index cfc1b287..73bc60c9 100644 --- a/contributing/Readme.md +++ b/contributing/Readme.md @@ -16,7 +16,7 @@ Run the following commands to download and run Bud locally: ```sh git clone https://github.com/livebud/bud cd bud -make install # fresh installs take a few minutes because of V8 +make # fresh installs take a few minutes because of V8 go run main.go ```