mirror of
https://github.com/torvalds/linux.git
synced 2025-08-15 14:11:42 +02:00

run-script-ask.sh had an incorrect file extension. This helper script
is not used by kselftests.
Fixes: 2a69962be4
("samples/check-exec: Add an enlighten "inc" interpreter and 28 tests")
Signed-off-by: Mickaël Salaün <mic@digikod.net>
Link: https://lore.kernel.org/r/20250306180559.1289243-1-mic@digikod.net
Signed-off-by: Kees Cook <kees@kernel.org>
9 lines
139 B
Bash
Executable file
9 lines
139 B
Bash
Executable file
#!/usr/bin/env sh
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
DIR="$(dirname -- "$0")"
|
|
|
|
PATH="${PATH}:${DIR}"
|
|
|
|
set -x
|
|
"${DIR}/script-ask.inc"
|