diff options
Diffstat (limited to 'zshfunc/update-lit')
-rwxr-xr-x | zshfunc/update-lit | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/zshfunc/update-lit b/zshfunc/update-lit index 92b04a4..97636fa 100755 --- a/zshfunc/update-lit +++ b/zshfunc/update-lit @@ -7,5 +7,6 @@ local b=~/projects/uni/lit (cd "$b" && (cd bibtex && git pull) && (cd papers && git pull)) for f in weasel.bib names-long.bib names-short.bib; do if [ -e "$f" ] ; then cp "$b/bibtex/$f" .; fi + if [ -e "bibs/$f" ] ; then cp "$b/bibtex/$f" bibs; fi done ) |