#!/bin/shset -eu cd "$MESON_SOURCE_ROOT" if [ ! -f .git/hooks/pre-commit.sample -o -f .git/hooks/pre-commit ]; then exit 2 # not neededfi cp -p .git/hooks/pre-commit.sample .git/hooks/pre-commitchmod +x .git/hooks/pre-commitecho 'Activated pre-commit hook'