From c6c7a538ac2000c5c6396387645ade3c4d885f5f Mon Sep 17 00:00:00 2001 From: Giles Bradshaw Date: Thu, 30 Jul 2020 07:24:27 +0100 Subject: [PATCH] doc: fixed instructions for pre release hook --- .drone/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.drone/README.md b/.drone/README.md index ca23f3e..237b41b 100644 --- a/.drone/README.md +++ b/.drone/README.md @@ -12,8 +12,8 @@ make a pre commit hook to compile ```shell -echo `drone jsonnet --source .drone//.drone.jsonnet --target .drone//.drone.yml --stream` > .git/hooks/pre-commit -echo `git add .drone//.drone.yml` > .git/hooks/pre-commit +echo `drone jsonnet --source .drone/.drone.jsonnet --target .drone/.drone.yml --stream` > .git/hooks/pre-commit +echo `git add .drone/.drone.yml` > .git/hooks/pre-commit chmod +x .git/hooks/pre-commit ```