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.
|
# 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
|