Update Packages, Add Status Command, and Bugfixes (!8)

Co-authored-by: Layla Manley <layla@layla.gg>
Reviewed-on: #8
This commit is contained in:
2024-01-14 20:17:43 +01:00
parent 44d45b7394
commit 7a01a77986
9 changed files with 119 additions and 41 deletions

View File

@ -24,10 +24,13 @@ go-generate:
@go generate $(generate)
go-get:
@go env -w GOPRIVATE=github.com/meteoritesolutions
@echo " > Checking if there is any missing dependencies..."
@go get $(get)
go-get-upgrade:
@echo " > Updating dependencies..."
@go get $(get) -u
go-install:
@echo " > Running go install..."
@go install $(GOFILES)
@ -56,6 +59,9 @@ docker-push: docker-build
## install: Download and install dependencies
install: go-get
## upgrade: Update Go packages
upgrade: go-get-upgrade
# clean: Runs go clean
clean: go-clean