This repository has been archived on 2021-11-29. You can view files and clone it, but cannot push or open issues or pull requests.
rsstube-bash-old/scripts/update

13 lines
224 B
Plaintext
Raw Permalink Normal View History

2021-11-28 19:00:00 -05:00
# must be able to download a new version
if [[ ! -O .. && $EUID -ne 0 ]]
then
error "Please run as root or the owner of this directory."
exit
fi
# if it's the git version, just git pull
if [[ -d .git ]]
then
git pull
fi