mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2025-12-24 22:50:05 +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>
(cherry picked from commit 72b3f657c4)
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
|