mirror of
https://github.com/ente-io/ente.git
synced 2025-05-24 20:19:17 +00:00
10 lines
200 B
Bash
Executable File
10 lines
200 B
Bash
Executable File
#!/bin/sh
|
|
# This git hook fails if a user is trying to add a new file which is
|
|
# not null safe.
|
|
exec ./hooks/pre-commit-fdroid
|
|
|
|
|
|
|
|
# If the script gets to this point, all files passed the check
|
|
exit 0
|