diff options
author | Mathieu Clabaut <mathieu.clabaut@gmail.com> | 2007-12-21 15:47:30 -0600 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-01-03 19:53:46 -0500 |
commit | 31ea1c1103b358f1dcbe2de40fefaf539e8bcbc3 (patch) | |
tree | 9cefdfd8131a61a8e270e0b39a4822bba69dae8b | |
parent | fd5abdfa44d3634fce2c6cc83cacba4457ba28eb (diff) |
.hgrc section was overwriten
-rw-r--r-- | hg/init.d/40hg-init | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hg/init.d/40hg-init b/hg/init.d/40hg-init index cf9733b..7d8404a 100644 --- a/hg/init.d/40hg-init +++ b/hg/init.d/40hg-init @@ -2,6 +2,6 @@ set -e if [ ! -e .hg ]; then hg init - echo "[web]\n" > .hg/hgrc - echo "$(hostname) /etc repository" > .hg/hgrc + echo "[web]" > .hg/hgrc + echo "description = $(hostname) /etc repository" >> .hg/hgrc fi |