mirror of
https://github.com/armbian/build.git
synced 2025-08-31 19:31:28 +02:00
7 lines
162 B
Bash
7 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
|
|
|
|
}
|