You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This causes these error messages to be output during the build:
/Users/mark.sheppard/code/amazon-ssm-agent/Tools/src/checkstyle.sh: line 37: Tools/bin/goimports: No such file or directory
/Users/mark.sheppard/code/amazon-ssm-agent/Tools/src/checkstyle.sh: line 47: Tools/bin/goimports: No such file or directory
/Users/mark.sheppard/code/amazon-ssm-agent/Tools/src/checkstyle.sh: line 57: Tools/bin/goimports: No such file or directory
Fixing that by changing Tools/bin/goimports to be just goimports then causes the build to fail:
Error: Found files not formatted by goimports
/Users/mark.sheppard/code/amazon-ssm-agent/agent/fileutil/artifact/artifact_integ_test.go
/Users/mark.sheppard/code/amazon-ssm-agent/agent/plugins/dockercontainer/dockercontainer_test.go
/Users/mark.sheppard/code/amazon-ssm-agent/agent/plugins/domainjoin/domainjoin_common.go
/Users/mark.sheppard/code/amazon-ssm-agent/agent/ssm/authtokenrequest/authtokenrequest_client.go
/Users/mark.sheppard/code/amazon-ssm-agent/agent/ssm/util/util_test.go
/Users/mark.sheppard/code/amazon-ssm-agent/agent/update/processor/processor.go
Please run 'goimports -w' for files listed.
make: *** [makefile:21: checkstyle] Error 1
The text was updated successfully, but these errors were encountered:
This causes these error messages to be output during the build:
Fixing that by changing
Tools/bin/goimports
to be justgoimports
then causes the build to fail:The text was updated successfully, but these errors were encountered: