master
Colin McMillen 3 years ago
parent
commit
3f2f6972ad
  1. 10
      git-hooks.md

10
git-hooks.md

@ -2,15 +2,11 @@ Put the following in `.git/hooks/pre-commit`:
```shell
#!/bin/sh
for file in $(git status --porcelain --untracked=all | cut -b 4- | grep "\.png$") ; do pngcrush -brute -ow $file; done
tools/scripts/lint.py || exit 1
```
And in `.git/modules/public/hooks/pre-commit`:
And in `Content/.git/hooks/pre-commit`:
```shell
#!/bin/sh
tools/scripts/lint.py || exit 1
dotnet test SharedTests/SharedTests.csproj || exit 1
for file in $(git status --porcelain --untracked=all | cut -b 4- | grep "\.png$") ; do pngcrush -brute -ow $file; done
```
Loading…
Cancel
Save