mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Download Jamstash in make setup
This commit is contained in:
parent
23e38ec82f
commit
907c310c01
3 changed files with 13 additions and 7 deletions
9
Makefile
9
Makefile
|
@ -8,7 +8,7 @@ clean:
|
|||
rm -f ${BINARY}
|
||||
|
||||
.PHONY: setup
|
||||
setup:
|
||||
setup: jamstash
|
||||
@which reflex || (echo "Installing Reflex" && GO111MODULE=off go get -u github.com/cespare/reflex)
|
||||
@which goconvey || (echo "Installing GoConvey" && GO111MODULE=off go get -u github.com/smartystreets/goconvey)
|
||||
@which wire || (echo "Installing Wire" && GO111MODULE=off go get -u go get github.com/google/wire/cmd/wire)
|
||||
|
@ -16,7 +16,7 @@ setup:
|
|||
|
||||
.PHONY: run
|
||||
run:
|
||||
@reflex -s -r "(\.go$$|sonic.toml)" -- go run .
|
||||
@reflex -s -r "(\.go$$|sonic.toml)" -R "Jamstash-master" -- go run .
|
||||
|
||||
.PHONY: test
|
||||
test:
|
||||
|
@ -30,3 +30,8 @@ convey:
|
|||
cloc:
|
||||
# cloc can be installed using brew
|
||||
cloc --exclude-dir=devDb,.idea,.vscode,wiki,static --exclude-ext=iml,xml .
|
||||
|
||||
jamstash:
|
||||
wget -N https://github.com/tsquillario/Jamstash/archive/master.zip
|
||||
unzip -o master.zip
|
||||
rm master.zip
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue