Mercurial Hosting > hghosting
annotate update.sh @ 23:7c9a45368af2 default tip
minor
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Fri, 04 Oct 2024 12:06:16 -0600 |
parents | 49461857ed79 |
children |
rev | line source |
---|---|
0 | 1 #!/bin/bash -e |
2 | |
3 . common.sh; | |
4 | |
5 echo Updating hg | |
6 /usr/local/bin/hg pull -u | |
7 | |
8 ./stop.sh | |
9 | |
12
c560b4e2f056
subdir for repos logs
Vadim Filimonov <fffilimonov@yandex.ru>
parents:
0
diff
changeset
|
10 mkdir -p logs/repos |
13 | 11 rm -f logs/*.log |
14 | 12 rm -f logs/repos/*_log |
0 | 13 hg identify >logs/changeset.txt |
14 | |
15 ${ROOTPWD}/luan.sh update_repositories.luan | |
16 | |
17 ./start.sh |