mirror of
https://gitlab.freedesktop.org/wlroots/wlr-protocols.git
synced 2025-12-24 18:10:05 +01:00
10 lines
253 B
Bash
Executable file
10 lines
253 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
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
|