2022-12-27 16:57:53 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# This git hook fails if a user is trying to add a new file which is
|
|
|
|
# not null safe.
|
2023-06-16 07:03:02 +00:00
|
|
|
exec ./hooks/pre-commit-fdroid
|
2022-12-27 16:57:53 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# If the script gets to this point, all files passed the check
|
|
|
|
exit 0
|