new/buildroot/support/testing/tests/package/copy-sample-script-to-target.sh
2025-05-10 21:58:58 +08:00

8 lines
89 B
Bash
Executable File

#!/bin/sh
set -e
shift
for file in "$@"; do
cp -f "${file}" "${TARGET_DIR}/root/"
done