2022-12-19 18:00:40 +00:00
|
|
|
#!/usr/bin/env bash
|
2023-03-09 17:30:40 +00:00
|
|
|
#
|
|
|
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
#
|
|
|
|
|
# Copyright (c) 2013-2023 Igor Pecovnik, igor@armbian.com
|
|
|
|
|
#
|
|
|
|
|
# This file is a part of the Armbian Build Framework
|
|
|
|
|
# https://github.com/armbian/build/
|
2022-12-19 18:00:40 +00:00
|
|
|
|
|
|
|
|
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 "$@"
|