From: Oleg Broytman Date: Thu, 11 Jun 2015 13:11:36 +0000 (+0300) Subject: Remove update X-Git-Tag: v0.4~14 X-Git-Url: https://git.phdru.name/?p=phdru.name%2Fcgi-bin%2Fblog-ru%2Fsearch-tags.git;a=commitdiff_plain;h=cea8cbf4c9c73207fc69eadf5b1a68bdc844d3d7 Remove update --- diff --git a/update b/update deleted file mode 100755 index ad37f0c..0000000 --- a/update +++ /dev/null @@ -1,23 +0,0 @@ -#! /bin/sh - -"$HOME"/admin/prog/git-scripts/update || exit 1 - -current="`git config --get --path remote.current.url`" - -# Copy templates and generated files with timestamps to avoid rebuilding -rsync -ahP "$current"/html/html.py "$current"/html/html.tmpl \ - "$current"/html/redirect.py "$current"/html/redirect.tmpl html && - -# Copy files generated by yacc -rsync -ahP "$current"/parser.out "$current"/parsetab.py . && - -cgi="`git config --get --path remote.cgi.url`" && -if [ -n "$cgi" ]; then - umask 022 && cd "$cgi" && git pull origin && - rsync -ahP "$current"/html/html.py "$current"/html/html.tmpl \ - "$current"/html/redirect.py "$current"/html/redirect.tmpl html && - rsync -ahP "$current"/parser.out "$current"/parsetab.py . && - compyleall && chmod -R a+rX . -fi && - -cd "$current" && exec git pull origin