mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-16 22:45:58 +01:00
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.
This commit is contained in:
parent
c5fd577181
commit
76b82fdde7
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue