Skip to content

Commit

Permalink
meson: explicitly specify path for find(1) (#7590)
Browse files Browse the repository at this point in the history
assets/install/meson.build:1:10: ERROR: Command `/bin/sh -c 'find -type f -not -name "*.build"'` failed with status 1.
  • Loading branch information
jbeich authored Aug 31, 2024
1 parent c5fd577 commit 76b82fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/install/meson.build
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 76b82fd

Please sign in to comment.