Skip to content

Commit 5bb1bd9

Browse files
committed
gh/action: fix a test as we changed the permissions on the files
1 parent 1cd939a commit 5bb1bd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/l10n.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ jobs:
502502
503503
# Find where coreutils was actually installed
504504
echo "Searching for coreutils binary in installation directory..."
505-
COREUTILS_BIN=$(find "$INSTALL_DIR" -name "coreutils" -type f 2>/dev/null | head -1)
505+
COREUTILS_BIN=$(find "$INSTALL_DIR" -name "coreutils" -type f -executable 2>/dev/null | head -1)
506506
if [ -n "$COREUTILS_BIN" ]; then
507507
echo "Found coreutils at: $COREUTILS_BIN"
508508
export COREUTILS_BIN

0 commit comments

Comments
 (0)