Improved attribution; re-added sub licences since unsure how this repackage/repo needs to comply otherwise

This commit is contained in:
2026-01-05 13:00:35 -06:00
parent 48deb314a5
commit 38951379a4
14 changed files with 272 additions and 33 deletions

View File

@@ -1,6 +1,6 @@
#!/bin/bash
# . CONFIG.sh
. scripts/CONFIG.sh
# set -o xtrace ## To debug scripts
# set -o errexit ## To exit on error
@@ -8,10 +8,10 @@
function main() {
SCRIPTPATH="$( cd "$(dirname "")" >/dev/null 2>&1 ; pwd -P )"
SCRIPTPATH="$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
cd "${SCRIPTPATH}/.."
echo "Working Dir: " $(pwd)
podman build -t newton-lsp -f Docker/Dockerfile .
podman build -t "${CONTAINER}" -f Docker/Dockerfile .
}
main $@;