Admin/cronjob/self_update
changeset 73479 6e20976d58f5
parent 68650 7538b5f301ea
child 73485 3cbf041f544a
equal deleted inserted replaced
73478:1be70e3de751 73479:6e20976d58f5
     9 
     9 
    10 cd "$HOME/cronjob"
    10 cd "$HOME/cronjob"
    11 mkdir -p run log
    11 mkdir -p run log
    12 
    12 
    13 {
    13 {
    14   hg -R isabelle pull "https://isabelle.sketis.net/repos/isabelle" || echo "self_update pull failed" >&2
    14   "${HG:-hg}" -R isabelle pull "https://isabelle.sketis.net/repos/isabelle" || echo "self_update pull failed" >&2
    15   hg -R isabelle update -C || echo "self_update update failed" >&2
    15   "${HG:-hg}" -R isabelle update -C || echo "self_update update failed" >&2
    16   isabelle/bin/isabelle components -a 2>&1 || echo "self_update components failed" >&2
    16   isabelle/bin/isabelle components -a 2>&1 || echo "self_update components failed" >&2
    17 } > run/self_update.out
    17 } > run/self_update.out