From a80e9769a397b03a87f16a4ded5556868e1c07a1 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 19 Oct 2016 18:12:26 -0700 Subject: [PATCH] [Emacs] Fix post-commit hook --- dotfiles/emacs.d/bin/git-hooks/post-commit | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/dotfiles/emacs.d/bin/git-hooks/post-commit b/dotfiles/emacs.d/bin/git-hooks/post-commit index f1a25f09..58b4293c 100755 --- a/dotfiles/emacs.d/bin/git-hooks/post-commit +++ b/dotfiles/emacs.d/bin/git-hooks/post-commit @@ -1,6 +1,13 @@ #!/usr/bin/env bash -THIS_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +SOURCE="${BASH_SOURCE[0]}" +while [ -h "$SOURCE" ]; do # resolve $SOURCE until the file is no longer a symlink + DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )" + SOURCE="$(readlink "$SOURCE")" + [[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" # if $SOURCE was a relative symlink, we need to resolve it relative to the path where the symlink file was located +done +THIS_DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )" + source "$THIS_DIR/../util.sh" if readme_was_updated; then