mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 12:02:30 +01:00
7 lines
533 B
Bash
Executable File
7 lines
533 B
Bash
Executable File
#!/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)
|