mirror of
https://github.com/armbian/build.git
synced 2025-08-14 15:16:58 +02:00
* Add shebangs for shellcheck See #AR-1406 * Add shebangs for shellcheck Also for `extensions` scripts
8 lines
182 B
Bash
8 lines
182 B
Bash
#!/usr/bin/env bash
|
|
run_on_sdcard() {
|
|
|
|
# Lack of quotes allows for redirections and pipes easily.
|
|
chroot "${SDCARD}" /bin/bash -c "${@}" >> "${DEST}"/${LOG_SUBPATH}/install.log
|
|
|
|
}
|