mirror of
https://github.com/sudoxnym/fdroiddata.git
synced 2026-04-15 03:57:13 +00:00
10 lines
230 B
Bash
Executable file
10 lines
230 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# Simple pre-commit hook to check that there are no errors in the fdroid
|
|
# metadata files.
|
|
|
|
# Redirect output to stderr.
|
|
exec 1>&2
|
|
|
|
# If there are metadata errors, print the stack traces and fail.
|
|
exec fdroid readmeta
|