summaryrefslogtreecommitdiffstats
path: root/testing/resources/modified_file_returns_zero_repo/bin/hook.sh
blob: 98b05f945d34c02d1f2d523a6ace5145e244164e (plain)
1
2
3
4
5
6
7
#!/usr/bin/env bash

for f in $@; do
    # Non UTF-8 bytes
    echo -e '\x01\x97' > "$f"
    echo "Modified: $f!"
done