mirror of
https://gitlab.freedesktop.org/wlroots/wlr-protocols.git
synced 2025-12-20 13:50:14 +01:00
9 lines
249 B
Bash
Executable file
9 lines
249 B
Bash
Executable file
#!/bin/sh -eux
|
|
|
|
for f in $(echo unstable/*.xml)
|
|
do
|
|
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
|