Compare commits

...

2 Commits

2 changed files with 2 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ echo "*** Running cronjob @ `date` ***"
cd $DIR
# Pull any updates, and if the project is already up to date, exit successfully.
git pull --rebase | grep -v "up to date"
git pull | grep -v "up to date"
status="$?"
echo "* Pull status is '$status'."
if [[ $status != 0 ]]; then

2
run.sh
View File

@@ -93,7 +93,7 @@ if [[ ! `which curl` ]]; then
fi
if [[ ! `which ps` ]]; then
echo "- Installing PS"
$sudo apt-get install -y ps
$sudo apt-get install -y procps
fi
# Directories and allowed page types are executable, others are not.