From 6ba479d7238c2121ad32086db39d64c72e304e00 Mon Sep 17 00:00:00 2001 From: yuriolive Date: Thu, 25 Apr 2019 12:58:46 -0300 Subject: [PATCH] Missing comma in JSON JSON is invalid, is missing a comma --- website/source/docs/provisioners/shell.html.md.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/source/docs/provisioners/shell.html.md.erb b/website/source/docs/provisioners/shell.html.md.erb index 3bfe898fe..d94849696 100644 --- a/website/source/docs/provisioners/shell.html.md.erb +++ b/website/source/docs/provisioners/shell.html.md.erb @@ -181,7 +181,7 @@ executing the next script: { "type": "shell", "script": "script.sh", - "pause_before": "10s" + "pause_before": "10s", "timeout": "10s" } ```