I'm following the instructions to creating a new beat
and ran into an error here.
make: *** No rule to make target 'update', needed by 'setup'. Stop.
When I took a look at the generate script, it seems that the update command was not running correctly:
.PHONY: setup
setup: copy-vendor git-init update git-add
This however works:
.PHONY: setup
setup:
make copy-vendor
make git-init
make update
make git-add
Beat Version: 6.4.0
Operating System: Ubuntu 16.04 LTS