Skip to content

Commit

Permalink
Remove doubled targets from Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
MikMuellerDev committed Aug 10, 2022
1 parent 95a7470 commit 3b55d77
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,6 @@ tar = mkdir -p build && tar -cvzf ./$(appname)_v$(version)_$(1)_$(2).tar.gz smar

all: linux

# Update the current version in all locations
version:
python3 update_version.py

# Prepares everything for a version-release
# In order to publish the release to Github, run `make gh-release
release: cleanall build

# Publishes the local release to Github releases
gh-release:
gh release create v$(version) ./build/*.tar.gz -F ./CHANGELOG.md -t 'Infrared Node v$(version)'

run:
go run .

Expand All @@ -34,7 +22,7 @@ cleanall: clean

# Linting
lint:
go vet -v
go vet
golangci-lint run
typos

Expand Down

0 comments on commit 3b55d77

Please sign in to comment.