new/buildroot/support/testing/tests/package/copy-sample-script-to-target.sh

8 lines
89 B
Bash
Raw Normal View History

2025-05-10 21:58:58 +08:00
#!/bin/sh
set -e
shift
for file in "$@"; do
cp -f "${file}" "${TARGET_DIR}/root/"
done