Makefile raw

   1  # Specify how travis ci needs to fetch its dependencies in target
   2  # We want to skip travis ci's default go get ./...,
   3  # because ./... also checks the example directory in which we have main redeclared multiple times
   4  target:
   5  	go get -u -t .;
   6