File: sanity-check

package info (click to toggle)
debci 3.13
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,656 kB
  • sloc: ruby: 6,516; sh: 2,437; javascript: 100; makefile: 92; perl: 11
file content (8 lines) | stat: -rwxr-xr-x 205 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
#!/bin/sh

set -eu

# check that every program under bin/ is installed to one of the binary packages
for prog in $(find bin/ -type f); do
  ls -1 debian/*/usr/share/debci/bin/${prog#bin/} > /dev/null
done