This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #/usr/bin/env bash | |
| # MIT © Sindre Sorhus - sindresorhus.com | |
| # Cengage © Lucas Lowry - github.com/cengageLucas | |
| # git hook to run a command after `git pull` if a specified file was changed | |
| # Use the following command from /mt4-ui to symlink this to .git/hooks | |
| # ln -s -f ../../hooks/post-merge .git/hooks/post-merge | |
| changed_files="$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD)" |