Skip to content

Commit 3b61e51

Browse files
authored
Update error message displayed when handler executable is not found during cfn submit (#173)
1 parent 6f630e7 commit 3b61e51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/rpdk/go/codegen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ def _find_exe(project):
226226
if not exe_glob:
227227
LOG.debug("No Go executable match")
228228
raise GoExecutableNotFoundError(
229-
"No Go executable was found.\n"
229+
"You must build the handler before running cfn-submit.\n"
230230
"Please run 'make' or the equivalent command "
231231
"in your IDE to compile and package the code."
232232
)

0 commit comments

Comments
 (0)