mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 12:02:30 +01:00
e599c2e773
* add git hook to make sure assets/ hasn't been gitignored * echo to stderr * quiet git check-ignore * add .v64 and .n64 to gitignore
8 lines
551 B
INI
8 lines
551 B
INI
# To refresh this file:
|
|
# python3 -m python_githooks
|
|
|
|
# Make sure dumped assets have not been unignored
|
|
# https://github.com/pmret/papermario/wiki/Asset-overrides
|
|
[pre-commit] # **** DO NOT REMOVE THIS!! ****
|
|
command = (git check-ignore assets/us -q && git check-ignore assets/jp -q && git check-ignore assets/ique -q && git check-ignore assets/pal -q) || (>&2 echo 'ERROR: You appear to be committing dumped assets!\nSee the following document for how to modify assets legally:\nhttps://github.com/pmret/papermario/wiki/Asset-overrides' && exit 1)
|