mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-25 10:30:07 +01:00
Simple diff between the file list and what ls gives us in the quirks directory. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
5 lines
130 B
Bash
Executable file
5 lines
130 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
pushd "$1" > /dev/null
|
|
diff -u1 <(grep -o 'quirks/.*\.quirks' meson.build) <(ls quirks/*.quirks)
|
|
popd > /dev/null
|