mirror of
https://gitlab.freedesktop.org/wlroots/wlr-protocols.git
synced 2025-12-20 02:10:06 +01:00
10 lines
254 B
Bash
Executable file
10 lines
254 B
Bash
Executable file
#!/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
|