From b8434db3cc2c1a872615c74e2e3a817442002c7e Mon Sep 17 00:00:00 2001 From: danasmera Date: Tue, 23 Jun 2015 20:48:13 -0400 Subject: [PATCH] fix: Add double-quote to a variable precedening color --- docsite/rst/faq.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docsite/rst/faq.rst b/docsite/rst/faq.rst index c691cd2af8d..faac872fad7 100644 --- a/docsite/rst/faq.rst +++ b/docsite/rst/faq.rst @@ -11,7 +11,7 @@ How can I set the PATH or any other environment variable for a task or entire pl Setting environment variables can be done with the `environment` keyword. It can be used at task or playbook level:: environment: - PATH: "{{ ansible_env.PATH }}":/thingy/bin + PATH: "{{ ansible_env.PATH }}:/thingy/bin" SOME: value