mirror of
https://github.com/armbian/build.git
synced 2025-08-12 06:06:58 +02:00
8 lines
162 B
Bash
8 lines
162 B
Bash
run_on_sdcard()
|
|
{
|
|
|
|
# Lack of quotes allows for redirections and pipes easily.
|
|
chroot "${SDCARD}" /bin/bash -c "${@}" >> "${DEST}"/${LOG_SUBPATH}/install.log
|
|
|
|
}
|