Beat creation failing

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

Your problem remind me of this issue: https://github.com/elastic/beats/issues/7815
Can you confirm it's the same problem?

Hi @kvch

Thanks for the reply. Yup it seems to be the same problem

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.