From 24867916e9aa80802425386b796f2fd5ea5b1be1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Paris?= Date: Wed, 14 Jan 2015 08:48:42 +0100 Subject: [PATCH] remove template from update script path The update script is not part of the template directory, but from the root directory. --- docs/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.md b/docs/index.md index 113349a..10f31b1 100644 --- a/docs/index.md +++ b/docs/index.md @@ -32,9 +32,9 @@ Then, you can update any repository by running this in the working tree of your repository : ```sh -$(git config --path --get init.templatedir)/update.sh +$(git config --path --get init.templatedir)/../update.sh # If your template directory is ~/.git_template/template, this is equivalent to : -~/.git_template/template/update.sh +~/.git_template/update.sh ``` Make sure you have rsync installed.