mirror of
https://github.com/armbian/build.git
synced 2025-09-08 07:11:21 +02:00
* Add / modify (c) in bash scripts Signed-off-by: Igor <igor@armbian.com> * Add (c) to the source config files --------- Signed-off-by: Igor <igor@armbian.com>
24 lines
395 B
Bash
Executable File
24 lines
395 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# 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/
|
|
|
|
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 "$@"
|