debuild notify make [1]:go:找不到命令

I need to build a deb for my golang program.

When I run debuild -uc -us it tells:

fakeroot debian/rules clean 
dh clean  
dh_testdir  
dh_auto_clean  
make[1]: Entering directory `/home/vagrant/zbus'  
go clean ./zbus-cli/  
make[1]: go: Command not found  
make[1]: *** [clean] Error 127  
make[1]: Leaving directory `/home/vagrant/zbus'  
dh_auto_clean: make -j1 clean returned exit code 2  

my go compiler is installed correctly, why it still command not found?

Apparently, I just had this problem and found that a package was missing to use this go command.

On Ubuntu, I had to install the golang-go package.

sudo apt-get install golang-go

Also, I actually just typed go at the terminal and it gave me the same command to type to retrieve that package.