diff options
author | Jan Beich <[email protected]> | 2024-08-31 09:01:02 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2024-08-31 11:01:02 +0200 |
commit | 76b82fdde7d3f38cb70db0bec3318a7fb6c27a0c (patch) | |
tree | 95d4f009ec43742e16db05b189cce3cbd57a3bbc /assets/install | |
parent | c5fd5771814958ad274ea9abb961fff621a35b9c (diff) | |
download | Hyprland-76b82fdde7d3f38cb70db0bec3318a7fb6c27a0c.tar.gz Hyprland-76b82fdde7d3f38cb70db0bec3318a7fb6c27a0c.zip |
meson: explicitly specify path for find(1) (#7590)
assets/install/meson.build:1:10: ERROR: Command `/bin/sh -c 'find -type f -not -name "*.build"'` failed with status 1.
Diffstat (limited to 'assets/install')
-rw-r--r-- | assets/install/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/install/meson.build b/assets/install/meson.build index 19b49638..1d4fb917 100644 --- a/assets/install/meson.build +++ b/assets/install/meson.build @@ -1,4 +1,4 @@ -globber = run_command('sh', '-c', 'find -type f -not -name "*.build"', check: true) +globber = run_command('sh', '-c', 'find . -type f -not -name "*.build"', check: true) files = globber.stdout().strip().split('\n') foreach file : files |