From d3bbf2698e52e0b65f9de704018ddb8b06911e8d Mon Sep 17 00:00:00 2001
From: jerbia <jerbia@gmail.com>
Date: Wed, 21 Jun 2017 14:46:23 +0300
Subject: [PATCH] Removed extra '\' sign (#6)

There was an extra '\' sign in the docker pull command
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index bdd4553..eb0e370 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,7 @@ Tests are configured with YAML files, making this tool easy to update as test sp
 You can either install kube-bench through a dedicated container, or compile it from source:
 
 1. Container installation:
-Run ```docker run --rm -v \`pwd\`:/host aquasec/kube-bench:latest```. This will copy the kube-bench binary and configuration to you host. You can then run ```./kube-bench <master|node>```.
+Run ```docker run --rm -v `pwd`:/host aquasec/kube-bench:latest```. This will copy the kube-bench binary and configuration to you host. You can then run ```./kube-bench <master|node>```.
 
 2. Install from sources:
 If Go is installed on the target machines, you can simply clone this repository and run as follows: 
-- 
GitLab