mirror of
https://github.com/pmret/papermario.git
synced 2024-11-18 00:42:34 +01:00
7 lines
533 B
Bash
7 lines
533 B
Bash
|
#!/bin/bash
|
||
|
# This script is copied into the pre-commit git hooks folder.
|
||
|
# It ensures that a commit is aborted if you try to accidentally commit game assets.
|
||
|
# install.sh will install this for you.
|
||
|
|
||
|
(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 -e '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)
|