mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
- armbian-next: fixes to ORAS-related logging - armbian-next: actually enable ORAS-based kernel git bare tree seeding/bundles; enable cleaning of bundle articfacts after confirmed working - armbian-next: introduce ORAS-based kernel git bare tree seeding/bundles (although it is a .tar, not a bundle); this is 20x faster than cloning - armbian-next: introduce `ORAS` tooling; pull and push functions & downloader/launcher
17 lines
207 B
Bash
Executable File
17 lines
207 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
SRC="$(
|
|
cd "$(dirname "$0")/../.."
|
|
pwd -P
|
|
)"
|
|
|
|
# shellcheck source=lib/single.sh
|
|
source "${SRC}"/lib/single.sh
|
|
|
|
# initialize logging variables.
|
|
logging_init
|
|
|
|
run_tool_oras "$@"
|