mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2026-06-26 12:59:28 -04:00
Notable changes - Single cpmfile - version/min_version/git_version have been fixed and replaced with version and min_version - Docs rewrite - Legacy options are gone - Fixed update/version commands Interactive adder is nonfunctional right now, will rewrite later Signed-off-by: crueter <crueter@eden-emu.dev>
31 lines
717 B
Bash
Executable file
31 lines
717 B
Bash
Executable file
#!/bin/sh -e
|
|
|
|
# SPDX-FileCopyrightText: Copyright 2026 crueter
|
|
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
# shellcheck disable=SC1091
|
|
|
|
: "${PACKAGE:=$1}"
|
|
|
|
# re-read json files
|
|
# shellcheck disable=SC2016
|
|
PACKAGES=$(jq -s 'reduce .[] as $item ({}; . * $item)' cpmfile.json)
|
|
export PACKAGES
|
|
|
|
. "$SCRIPTS"/vars.sh
|
|
|
|
[ "$CI" = null ] || exit 0
|
|
|
|
ACTUAL=$("$SCRIPTS"/util/url-hash.sh "$DOWNLOAD")
|
|
|
|
if [ "$ACTUAL" != "$HASH" ] && [ "$QUIET" != true ]; then
|
|
echo "-- * Expected $HASH"
|
|
echo "-- * Got $ACTUAL"
|
|
[ "$UPDATE" != "true" ] && exit 1
|
|
fi
|
|
|
|
if [ "$UPDATE" = "true" ] && [ "$ACTUAL" != "$HASH" ]; then
|
|
NEW_JSON=$(echo "$JSON" | jq ".hash = \"$ACTUAL\"")
|
|
|
|
"$SCRIPTS"/util/replace.sh "$PACKAGE" "$NEW_JSON"
|
|
fi
|