mirror of
https://github.com/armbian/build.git
synced 2025-08-14 07:06:58 +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
|
|
|
|
}
|