From 0c7428ff7cf4b3903e6c6ab6eb6b4aee2be88a33 Mon Sep 17 00:00:00 2001 From: Tomas Nozicka Date: Mon, 1 Feb 2016 17:21:01 +0100 Subject: [PATCH] Add chmod +x on downloaded binary to README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index a5137aa..17ffe83 100644 --- a/README.md +++ b/README.md @@ -9,11 +9,13 @@ This tool is ideal for use without polluting you environment with dependencies. wget ```bash wget https://github.com/tnozicka/goenvtemplator/releases/download/v0.0.1-rc1/goenvtemplator-amd64 -O /usr/local/bin/goenvtemplator +chmod +x /usr/local/bin/goenvtemplator ``` Dockerfile ```Dockerfile ADD https://github.com/tnozicka/goenvtemplator/releases/download/v0.0.1-rc1/goenvtemplator-amd64 /usr/local/bin/goenvtemplator +RUN chmod +x /usr/local/bin/goenvtemplator ```