diff --git a/tools/cmd/tool/confirm_and_run_shebang.go b/tools/cmd/tool/confirm_and_run_shebang.go index d938c2b07..311e8fb7a 100644 --- a/tools/cmd/tool/confirm_and_run_shebang.go +++ b/tools/cmd/tool/confirm_and_run_shebang.go @@ -33,7 +33,7 @@ func confirm_and_run_shebang(args []string) (rc int, err error) { return 1, err } if !allowed { - return 1, fmt.Errorf("Execution permission refused by user") + return 1, fmt.Errorf("Execution of %s was denied by user", script_path) } } exe := utils.FindExe(args[0])