--- a/Admin/Phabricator/update Sat Dec 21 15:14:34 2019 +0100
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,24 +0,0 @@
-#!/usr/bin/env bash
-#
-# Update Phabricator installation in given ROOT directory
-# see https://secure.phabricator.com/book/phabricator/article/upgrading
-
-set -e
-
-ROOT="${1:-/var/www/phabricator}"
-
-"$ROOT/phabricator/bin/phd" stop
-
-systemctl stop apache2
-
-for REPOS in libphutil arcanist phabricator
-do
- cd "$ROOT/$REPOS"
- git pull
-done
-
-"$ROOT/phabricator/bin/storage" upgrade --force
-
-systemctl start apache2
-
-"$ROOT/phabricator/bin/phd" start