mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07: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
|
|
|
|
}
|