chore: small change

Kujtim Hoxha created

Change summary

internal/shell/shell.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

internal/shell/shell.go 🔗

@@ -261,7 +261,7 @@ func (s *Shell) blockHandler() func(next interp.ExecHandlerFunc) interp.ExecHand
 
 			for _, blockFunc := range s.blockFuncs {
 				if blockFunc(args) {
-					return fmt.Errorf("command '%s' is not allowed for security reasons", strings.Join(args, " "))
+					return fmt.Errorf("command is not allowed for security reasons: %s", strings.Join(args, " "))
 				}
 			}