mirror of
https://github.com/sudoxnym/fdroiddata.git
synced 2026-04-15 03:57:13 +00:00
11 lines
140 B
Bash
Executable file
11 lines
140 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
# Redirect output to stderr.
|
|
exec 1>&2
|
|
|
|
./tools/verify-rewritemeta.sh
|
|
fdroid lint
|