mirror of
https://github.com/sudoxnym/fdroiddata.git
synced 2026-05-03 20:56:57 +00:00
11 lines
230 B
Text
11 lines
230 B
Text
|
|
#!/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
|