chore: always use DOKKU_ROOT env var instead of /home/dokku

This commit is contained in:
Jose Diaz-Gonzalez
2022-04-03 13:14:52 -04:00
parent 98e38bd70d
commit 548bb6eae2

View File

@@ -409,7 +409,7 @@ fn-git-last-updated-at() {
declare desc="retrieve the deploy branch for a given application"
declare APP="$1"
local DOKKU_DEPLOY_BRANCH="$(fn-git-deploy-branch "$APP")"
local HEAD_FILE="/home/dokku/$APP/refs/heads/$DOKKU_DEPLOY_BRANCH"
local HEAD_FILE="$DOKKU_ROOT/$APP/refs/heads/$DOKKU_DEPLOY_BRANCH"
if [[ -f "$HEAD_FILE" ]]; then
stat -c %Y "$HEAD_FILE"