mirror of
https://github.com/t2linux/fedora.git
synced 2026-08-16 05:18:11 -07:00
10 lines
97 B
Bash
Executable File
10 lines
97 B
Bash
Executable File
#!/usr/bin/bash
|
|
|
|
set -e
|
|
|
|
for i in /repo/*/*.spec; do
|
|
rpmlint "$i"
|
|
done
|
|
|
|
shellcheck /repo/**.sh
|