ubuntu-buildroot/support/testing/tests/package/copy-sample-script-to-targe...

8 lines
89 B
Bash
Raw Normal View History

2024-04-01 15:19:46 +00:00
#!/bin/sh
set -e
shift
for file in "$@"; do
cp -f "${file}" "${TARGET_DIR}/root/"
done