mirror of
https://github.com/t2linux/fedora.git
synced 2026-04-30 13:51:42 -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
|