debugging a variable

Oct 20, 2023

To print out the value of a variable, use the info command

GOFILES=$(shell find . -iname '*.go')
$(info [$(GOFILES)])

in this example, we've added literal [] around the value of the variable to make the output clearer.

docs

↑ up