File: check.sh

package info (click to toggle)
rust-wayland-protocols-wlr 0.3.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 268 kB
  • sloc: xml: 2,075; makefile: 40; sh: 8
file content (10 lines) | stat: -rwxr-xr-x 254 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh -eu

for f in "$@"
do
	echo >&2 "Checking $f"
	wayland-scanner -s client-header "$f" /dev/null
	wayland-scanner -s server-header "$f" /dev/null
	wayland-scanner -s public-code "$f" /dev/null
	wayland-scanner -s private-code "$f" /dev/null
done