From 1eaa9d4a08f6f3d8cd26d34627e90c5743aaf420 Mon Sep 17 00:00:00 2001 From: bmoar Date: Thu, 5 Mar 2015 20:30:00 -0500 Subject: [PATCH] fix path in Test-module example --- hacking/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hacking/README.md b/hacking/README.md index 6d65464eee8..ae8db7e3a9b 100644 --- a/hacking/README.md +++ b/hacking/README.md @@ -29,7 +29,7 @@ a module outside of the ansible program, locally, on the current machine. Example: - $ ./hacking/test-module -m library/commands/shell -a "echo hi" + $ ./hacking/test-module -m lib/ansible/modules/core/commands/shell -a "echo hi" This is a good way to insert a breakpoint into a module, for instance.