mirror of
https://github.com/SinTan1729/ReVancedBuilder.git
synced 2024-12-25 20:28:37 -06:00
del: Delete the old shell scripts
This commit is contained in:
parent
b07b9faa9a
commit
7ed9a74f8a
2 changed files with 0 additions and 483 deletions
|
@ -1,323 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Run only one instance of this script at one time
|
||||
[ "${BKLOCKER}" != "running" ] && exec env BKLOCKER="running" flock -en "/tmp/revanced-builder.lock" "$0" "$@" || :
|
||||
|
||||
# Get timestamp
|
||||
timestamp=$(date '+%Y%m%d%H%M%S')
|
||||
|
||||
# Log everything to a logfile inside logs/
|
||||
log_file="$1/logs/$timestamp.log"
|
||||
[ -d "$1" ] && mkdir -p "$1/logs" && exec > >(tee "$log_file") 2>&1
|
||||
|
||||
# Set working directory and current directory
|
||||
if [ -d "$1" ]; then
|
||||
WDIR="$1"
|
||||
else
|
||||
echo "Working directory not provided"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# File containing all patches
|
||||
patch_file="$WDIR/chosen_patches.txt"
|
||||
|
||||
# Returns if $1 is less than $2
|
||||
ver_less_than() {
|
||||
# Strip letters from version name
|
||||
ver1=$(echo $1 | sed 's/[a-zA-Z]*//g')
|
||||
ver2=$(echo $2 | sed 's/[a-zA-Z]*//g')
|
||||
[ $(echo $ver1$'\n'$ver2 | sort -V | tail -n1) != $ver1 ] && echo true || echo false
|
||||
}
|
||||
|
||||
# Make sure to work in the script directory
|
||||
SDIR="$(dirname -- "$(readlink -f -- "$0")")"
|
||||
cd "$SDIR"
|
||||
|
||||
# Read the settings
|
||||
if [ -f "$WDIR/build_settings" ]; then
|
||||
source "$WDIR/build_settings"
|
||||
else
|
||||
if [ -f "./build_settings"]; then
|
||||
cp ./build_settings "$WDIR/build_settings"
|
||||
source ./build_settings
|
||||
else
|
||||
echo "Could not find the build_settings file!"
|
||||
fi
|
||||
fi
|
||||
|
||||
# Get line numbers where included & excluded patches start from.
|
||||
# We rely on the hardcoded messages to get the line numbers using grep
|
||||
excluded_start="$(grep -n -m1 'EXCLUDE PATCHES' "$patch_file" | cut -d':' -f1)"
|
||||
included_start="$(grep -n -m1 'INCLUDE PATCHES' "$patch_file" | cut -d':' -f1)"
|
||||
|
||||
# Get everything but hashes from between the EXCLUDE PATCH & INCLUDE PATCH line
|
||||
# Note: '^[^#[:blank:]]' ignores starting hashes and/or blank characters i.e, whitespace & tab excluding newline
|
||||
excluded_patches="$(tail -n +$excluded_start $patch_file | head -n "$((included_start - excluded_start))" | grep '^[^#[:blank:]]')"
|
||||
|
||||
# Get everything but hashes starting from INCLUDE PATCH line until EOF
|
||||
included_patches="$(tail -n +$included_start $patch_file | grep '^[^#[:blank:]]')"
|
||||
|
||||
# Array for storing patches
|
||||
declare -a patches
|
||||
|
||||
# Required artifacts in the format repository-name_filename
|
||||
artifacts="revanced/revanced-cli:revanced-cli.jar revanced/revanced-integrations:revanced-integrations.apk revanced/revanced-patches:revanced-patches.jar inotia00/VancedMicroG:microg.apk"
|
||||
|
||||
## Functions
|
||||
|
||||
# Function for populating patches array, using a function here reduces redundancy & satisfies DRY principals
|
||||
populate_patches() {
|
||||
# Note: <<< defines a 'here-string'. Meaning, it allows reading from variables just like from a file
|
||||
while read -r patch; do
|
||||
patches+=("$1 $patch")
|
||||
done <<<"$2"
|
||||
}
|
||||
|
||||
## Main
|
||||
|
||||
# cleanup to fetch new revanced on next run
|
||||
if [[ "$2" == "clean" ]]; then
|
||||
rm -f revanced-cli.jar revanced-integrations.apk revanced-patches.jar
|
||||
exit
|
||||
fi
|
||||
|
||||
if [[ "$2" == "experimental" ]]; then
|
||||
EXPERIMENTAL="--experimental"
|
||||
fi
|
||||
|
||||
# Set flag to determine if a build should happen or not
|
||||
flag=false
|
||||
check_flag=false
|
||||
|
||||
# Get inside the working directory
|
||||
cd "$WDIR"
|
||||
echo "$(date) | Starting check..."
|
||||
|
||||
if [[ $2 != buildonly ]]; then
|
||||
# Create a new versions file, if needed
|
||||
[ -f versions.json ] || echo "{}" >versions.json
|
||||
cp versions.json versions-new.json
|
||||
# Fetch all the dependencies
|
||||
try=0
|
||||
while :; do
|
||||
try=$(($try + 1))
|
||||
[ $try -gt 10 ] && echo "API error!" && exit 2
|
||||
curl -s -X 'GET' 'https://releases.revanced.app/tools' -H 'accept: application/json' -o latest_versions.json
|
||||
cat latest_versions.json | jq -e '.error' >/dev/null || break
|
||||
echo "API failure, trying again. $((10 - $try)) tries left..."
|
||||
sleep 10
|
||||
done
|
||||
|
||||
for artifact in $artifacts; do
|
||||
#Check for updates
|
||||
repo=$(echo $artifact | cut -d ':' -f1)
|
||||
name=$(echo $artifact | cut -d ':' -f2)
|
||||
basename=$(echo $repo | cut -d '/' -f2)
|
||||
echo "Checking $basename"
|
||||
version_present=$(jq -r ".\"$basename\"" versions.json)
|
||||
[[ "$version_present" == "null" ]] && version_present=0
|
||||
data="$(jq -r ".tools[] | select((.repository == \"$repo\") and (.content_type | contains(\"archive\")))" latest_versions.json)"
|
||||
[[ $name == microg.apk ]] && version=$(curl -s "https://api.github.com/repos/$repo/releases/latest" | jq -r '.tag_name') || version=$(echo "$data" | jq -r '.version')
|
||||
if [[ $(ver_less_than $version_present $version) == true || ! -f $name || $2 == force ]]; then
|
||||
if [[ $2 == checkonly ]]; then
|
||||
echo "[checkonly] $basename has an update ($version_present -> $version)"
|
||||
check_flag=true
|
||||
continue
|
||||
fi
|
||||
echo "Downloading $name"
|
||||
[[ $name == microg.apk && -f $name && $2 != force ]] && microg_updated=true
|
||||
# shellcheck disable=SC2086,SC2046
|
||||
[[ $name == microg.apk ]] && download_link="https://github.com/$repo/releases/latest/download/$name" || download_link="$(echo "$data" | jq -r '.browser_download_url')"
|
||||
curl -sLo "$name" "$download_link"
|
||||
jq ".\"$basename\" = \"$version\"" versions-new.json >versions-tmp.json && mv versions-tmp.json versions-new.json
|
||||
echo "Upgraded $basename from $version_present to $version"
|
||||
flag=true
|
||||
fi
|
||||
done
|
||||
|
||||
[[ ! -f com.google.android.youtube.apk || ! -f com.google.android.apps.youtube.music.apk ]] && flag=true
|
||||
|
||||
# Exit if no updates happened
|
||||
if [[ $flag == false && $2 != force ]]; then
|
||||
if [[ $check_flag == false ]]; then
|
||||
echo "Nothing to update"
|
||||
else
|
||||
"$SDIR/download_apk.sh" "$WDIR" checkonly
|
||||
fi
|
||||
echo "--------------------"$'\n'"--------------------"
|
||||
exit
|
||||
fi
|
||||
|
||||
# Download required apk files
|
||||
"$SDIR/download_apk.sh" "$WDIR"
|
||||
fi
|
||||
|
||||
# If the variables are NOT empty, call populate_patches with proper arguments
|
||||
[[ ! -z "$excluded_patches" ]] && populate_patches "-e" "$excluded_patches"
|
||||
[[ ! -z "$included_patches" ]] && populate_patches "-i" "$included_patches"
|
||||
|
||||
# Variable to flag errors
|
||||
error=0
|
||||
|
||||
# Functions for building the APKs
|
||||
|
||||
build_yt_nonroot() {
|
||||
echo "************************************"
|
||||
echo "Building YouTube APK"
|
||||
echo "************************************"
|
||||
if [ -f "com.google.android.youtube.apk" ]; then
|
||||
echo "Building Non-root APK"
|
||||
java -jar revanced-cli.jar -m revanced-integrations.apk -b revanced-patches.jar \
|
||||
${patches[@]} \
|
||||
$EXPERIMENTAL \
|
||||
-a com.google.android.youtube.apk -o revanced-yt-nonroot.apk
|
||||
else
|
||||
echo "Cannot find YouTube APK, skipping build"
|
||||
fi
|
||||
echo ""
|
||||
echo "************************************"
|
||||
|
||||
# Rename files
|
||||
mv revanced-yt-nonroot.apk YouTube_ReVanced_nonroot_$timestamp.apk || error=1
|
||||
}
|
||||
|
||||
build_yt_root() {
|
||||
echo "************************************"
|
||||
echo "Building YouTube APK"
|
||||
echo "************************************"
|
||||
if [ -f "com.google.android.youtube.apk" ]; then
|
||||
echo "Building Root APK"
|
||||
java -jar revanced-cli.jar -m revanced-integrations.apk -b revanced-patches.jar --mount \
|
||||
-e microg-support ${patches[@]} \
|
||||
$EXPERIMENTAL \
|
||||
-a com.google.android.youtube.apk -o revanced-yt-root.apk
|
||||
else
|
||||
echo "Cannot find YouTube APK, skipping build"
|
||||
fi
|
||||
echo ""
|
||||
echo "************************************"
|
||||
|
||||
# Rename files
|
||||
mv revanced-yt-root.apk YouTube_ReVanced_root_$timestamp.apk || error=1
|
||||
}
|
||||
|
||||
build_ytm_nonroot() {
|
||||
echo "Building YouTube Music APK"
|
||||
echo "************************************"
|
||||
if [ -f "com.google.android.apps.youtube.music.apk" ]; then
|
||||
echo "Building Non-root APK"
|
||||
java -jar revanced-cli.jar -m revanced-integrations.apk -b revanced-patches.jar \
|
||||
${patches[@]} \
|
||||
$EXPERIMENTAL \
|
||||
-a com.google.android.apps.youtube.music.apk -o revanced-ytm-nonroot.apk
|
||||
else
|
||||
echo "Cannot find YouTube Music APK, skipping build"
|
||||
fi
|
||||
|
||||
# Rename files
|
||||
mv revanced-ytm-nonroot.apk YouTube_Music_ReVanced_nonroot_$timestamp.apk || error=1
|
||||
}
|
||||
|
||||
build_ytm_root() {
|
||||
echo "Building YouTube Music APK"
|
||||
echo "************************************"
|
||||
if [ -f "com.google.android.apps.youtube.music.apk" ]; then
|
||||
echo "Building Root APK"
|
||||
java -jar revanced-cli.jar -m revanced-integrations.apk -b revanced-patches.jar --mount \
|
||||
-e microg-support ${patches[@]} \
|
||||
$EXPERIMENTAL \
|
||||
-a com.google.android.apps.youtube.music.apk -o revanced-ytm-root.apk
|
||||
else
|
||||
echo "Cannot find YouTube Music APK, skipping build"
|
||||
fi
|
||||
|
||||
# Rename files
|
||||
mv revanced-ytm-root.apk YouTube_Music_ReVanced_root_$timestamp.apk || error=1
|
||||
}
|
||||
|
||||
telegram_send_msg() {
|
||||
# telegram.sh uses bot account, but it supports formatted messages
|
||||
[[ "$TELEGRAM_TOKEN" == "" || "$TELEGRAM_CHAT" == "" ]] && echo "Please provide valid channel address in the settings!"
|
||||
./telegram.sh -t "$TELEGRAM_TOKEN" -c "$TELEGRAM_CHAT" -T "⚙⚙⚙ Build Details ⚙⚙⚙" -M "$1"$'\n'"Timestamp: $timestamp"$'\n'"⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯"
|
||||
}
|
||||
|
||||
gotify_send_msg() {
|
||||
curl -s -X POST "$GOTIFY_URL/message?token=$GOTIFY_TOKEN" \
|
||||
-F "title=⚙⚙⚙ Build Details ⚙⚙⚙" -F "message=$1" -F "priority=5"
|
||||
}
|
||||
|
||||
ntfy_send_msg() {
|
||||
curl -s -H "Icon: https://upload.wikimedia.org/wikipedia/commons/thumb/4/40/Revanced-logo-round.svg/240px-Revanced-logo-round.svg.png" \
|
||||
-H "Title: ⚙⚙⚙ ReVanced Build ⚙⚙⚙" \
|
||||
-d "$1" \
|
||||
"$NTFY_URL/$NTFY_TOPIC"
|
||||
}
|
||||
|
||||
# Check the config and build accordingly
|
||||
$YT_NONROOT && build_yt_nonroot
|
||||
$YT_ROOT && build_yt_root
|
||||
$YTM_NONROOT && build_ytm_nonroot
|
||||
$YTM_ROOT && build_ytm_root
|
||||
|
||||
# Send telegram message about the new build
|
||||
|
||||
if [ $error == 1 ]; then
|
||||
echo "There was an error while building!"
|
||||
msg="There was an error during the build process! Please take a look at the logs."$'\n'"Timestamp: $timestamp"
|
||||
|
||||
$TG_NOTIFICATIONS && telegram_send_msg "$msg"
|
||||
$GOTIFY_NOTIFICATIONS && gotify_send_msg "$msg"
|
||||
$NTFY_NOTIFICATIONS && ntfy_send_msg "$msg"
|
||||
|
||||
[[ $2 != buildonly ]] && mv versions-new.json versions-fail.json || rm versions-new.json
|
||||
exit 4
|
||||
else
|
||||
mv versions-new.json versions.json
|
||||
fi
|
||||
|
||||
if $TG_UPLOAD; then
|
||||
echo "Uploading to telegram"
|
||||
# telegram-upload uses personal account, hence bypassing 50 MB max upload limit of bots
|
||||
[ "$CHANNEL_ADDRESS" == "" ] && echo "Please provide valid channel address in the settings!"
|
||||
/home/sintan/.local/bin/telegram-upload YouTube_ReVanced_nonroot_$timestamp.apk YouTube_Music_ReVanced_nonroot_$timestamp.apk --to "$CHANNEL_ADDRESS" --caption "" && sent=true
|
||||
fi
|
||||
|
||||
# Create the message to be sent
|
||||
msg=$(cat versions.json | tail -n+2 | head -n-1 | cut -c3- | sed "s/\"//g" | sed "s/,//g" | sed "s/com.google.android.apps.youtube.music/YouTube Music/" |
|
||||
sed "s/com.google.android.youtube/YouTube/" | sed "s/VancedMicroG/Vanced microG/" | sed "s/revanced-/ReVanced /g" | sed "s/patches/Patches/" |
|
||||
sed "s/cli/CLI/" | sed "s/integrations/Integrations/" | awk 1 ORS=$'\n') # I know, it's a hacky solution
|
||||
|
||||
if $TG_NOTIFICATIONS; then
|
||||
echo "Sending messages to telegram"
|
||||
telegram_send_msg "$msg"
|
||||
[ $microg_updated ] && telegram_send_msg "_An update of microg was published._"
|
||||
fi
|
||||
|
||||
if $GOTIFY_NOTIFICATIONS; then
|
||||
echo "Sending messages to Gotify"
|
||||
MESSAGE="$msg"$'\n'"Timestamp: $timestamp"
|
||||
gotify_send_msg "$MESSAGE"
|
||||
[ $microg_updated ] && gotify_send_msg "An update of microg was published."
|
||||
fi
|
||||
|
||||
if $NTFY_NOTIFICATIONS; then
|
||||
echo "Sending messages to ntfy.sh"
|
||||
MESSAGE="$msg"$'\n'"Timestamp: $timestamp"
|
||||
ntfy_send_msg "$MESSAGE"
|
||||
[ $microg_updated ] && ntfy_send_msg "An update of microg was published."
|
||||
fi
|
||||
|
||||
# Do some cleanup, keep only the last 3 build's worth of files and a week worth of logs
|
||||
mkdir -p archive
|
||||
mv *ReVanced_*_$timestamp.apk archive/
|
||||
find ./archive -maxdepth 1 -type f -printf '%Ts\t%P\n' |
|
||||
sort -rn |
|
||||
tail -n +7 |
|
||||
cut -f2- |
|
||||
xargs -r -I {} rm "./archive/{}"
|
||||
find ./logs -mtime +7 -exec rm {} \;
|
||||
|
||||
# Run a custom post script, if available
|
||||
[ -f post_script.sh ] && ./post_script.sh $timestamp
|
||||
|
||||
echo "Done!"$'\n'"************************************"
|
160
download_apk.sh
160
download_apk.sh
|
@ -1,160 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
declare -A apks
|
||||
|
||||
apks["com.google.android.youtube"]=dl_yt
|
||||
apks["com.google.android.apps.youtube.music"]=dl_ytm
|
||||
|
||||
flag=$2
|
||||
|
||||
# Read the settings
|
||||
source "$1/build_settings"
|
||||
|
||||
## Functions
|
||||
|
||||
# Wget user agent
|
||||
WGET_HEADER="User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/115.0"
|
||||
|
||||
# Wget function
|
||||
req() { wget -nv -4 -O "$2" --header="$WGET_HEADER" "$1"; }
|
||||
|
||||
# Returns true if $1 is less than $2
|
||||
ver_less_than() {
|
||||
[[ ${1:0:1} == "v" ]] && var1=${1:1} || var1=$1
|
||||
[[ ${2:0:1} == "v" ]] && var2=${2:1} || var2=$2
|
||||
[[ $(echo $var1$'\n'$var2 | sort -V | tail -n1) != $var1 ]] && echo true || echo false
|
||||
}
|
||||
|
||||
# APKPure Download function
|
||||
dl_apkpure() {
|
||||
version="$1"
|
||||
app="$2"
|
||||
apkpure_appname="$3"
|
||||
$hard_vers && best_match="$version" || best_match="$(apkpure_best_match $version $app $apkpure_appname)"
|
||||
|
||||
# if [[ "$version" == "$best_match" || "$version" == "latest" ]]; then
|
||||
# echo "Downloading version $best_match from APKPure"
|
||||
# else
|
||||
# echo "Unable to get version $version, downloading version $best_match instead"
|
||||
# fi
|
||||
|
||||
vers_code="$(req https://apkpure.com/$apkpure_appname/$app/versions - | htmlq --attribute data-dt-versioncode 'a[data-dt-version="'$version'"][data-dt-apkid^="b\/APK\/"]')"
|
||||
url="https://d.apkpure.com/b/APK/$app?versionCode=$vers_code"
|
||||
|
||||
req "$url" "$app.apk"
|
||||
echo "$url"
|
||||
}
|
||||
|
||||
# Get the best match even if the desired version isn't there
|
||||
# OUtputs the latest version with supplied version 0
|
||||
apkpure_best_match() {
|
||||
version="$1"
|
||||
app="$2"
|
||||
apkpure_appname="$3"
|
||||
|
||||
vers_list=$(req https://apkpure.com/$apkpure_appname/$app/versions - | htmlq --attribute data-dt-version 'a[data-dt-apkid^="b\/APK\/"]')
|
||||
if [[ "$version" == "latest" ]]; then
|
||||
match="$(echo "$vers_list" | head -1)"
|
||||
elif $(echo "$vers_list" | grep -q "$version"); then
|
||||
match="$version"
|
||||
else
|
||||
match="$(echo "$vers_list"$'\n'"$version" | sort -V | grep -B 1 "$version" | head -1)"
|
||||
fi
|
||||
|
||||
echo "$match"
|
||||
}
|
||||
|
||||
# Downloading youtube
|
||||
dl_yt() {
|
||||
appname=com.google.android.youtube
|
||||
$hard_vers || version="$(apkpure_best_match "$version" $appname youtube)"
|
||||
if [[ ! $(ver_less_than "$version_present" "$version") && -f $appname.apk ]]; then
|
||||
echo "Version $version is already present"
|
||||
return
|
||||
fi
|
||||
|
||||
if [[ $flag == checkonly ]]; then
|
||||
echo "[checkonly] YouTube has an update ($version_present -> $version)"
|
||||
return
|
||||
fi
|
||||
echo "Downloading YouTube"
|
||||
|
||||
echo "Choosing version $version"
|
||||
declare -r dl_url=$(dl_apkpure "$version" $appname youtube)
|
||||
echo "YouTube version: $version"
|
||||
echo "downloaded from: [APKMirror - YouTube]($dl_url)"
|
||||
jq ".\"$apk\" = \"$version\"" versions.json >versions-tmp.json && mv versions-tmp.json versions-new.json
|
||||
}
|
||||
|
||||
# Downloading youtube music
|
||||
dl_ytm() {
|
||||
appname=com.google.android.apps.youtube.music
|
||||
$hard_vers || version="$(apkpure_best_match "$version" $appname youtube-music)"
|
||||
if [[ ! $(ver_less_than "$version_present" "$version") && -f $appname.apk ]]; then
|
||||
echo "Version $version is already present"
|
||||
return
|
||||
fi
|
||||
|
||||
if [[ $flag == checkonly ]]; then
|
||||
echo "[checkonly] YouTube Music has an update ($version_present -> $version)"
|
||||
return
|
||||
fi
|
||||
echo "Downloading YouTube Music"
|
||||
|
||||
echo "Choosing version '${version}'"
|
||||
# declare -r dl_url=$(dl_apkpure "$version" $appname youtube-music)
|
||||
dl_apkpure "$version" $appname youtube-music
|
||||
echo "YouTube Music version: $version"
|
||||
echo "downloaded from: [APKMirror - YouTube Music]($dl_url)"
|
||||
jq ".\"$apk\" = \"$version\"" versions.json >versions-tmp.json && mv versions-tmp.json versions-new.json
|
||||
}
|
||||
|
||||
# Get into the build directory
|
||||
|
||||
if [ -d "$1" ]; then
|
||||
cd "$1"
|
||||
else
|
||||
echo "Working directory not provided"
|
||||
exit -1
|
||||
fi
|
||||
|
||||
## Main
|
||||
try=0
|
||||
while :; do
|
||||
try=$(($try + 1))
|
||||
[ $try -gt 10 ] && echo "API error!" && exit 3
|
||||
curl -X 'GET' 'https://releases.revanced.app/patches' -H 'accept: application/json' -o patches.json
|
||||
cat patches.json | jq -e '.error' >/dev/null 2>&1 || break
|
||||
echo "API failure, trying again. $((10 - $try)) tries left..."
|
||||
sleep 10
|
||||
done
|
||||
|
||||
for apk in "${!apks[@]}"; do
|
||||
# Skip if app not specified for build
|
||||
[[ "$apk" == "com.google.android.youtube" && "$YT_NONROOT" == false && "$YT_ROOT" == false ]] && continue
|
||||
[[ "$apk" == "com.google.android.apps.youtube.music" && "$YTM_NONROOT" == false && "$YTM_ROOT" == false ]] && continue
|
||||
echo "Checking $apk"
|
||||
if [[ "$apk" == "com.google.android.youtube" && "$YT_VERSION" != "" ]]; then
|
||||
version="$YT_VERSION"
|
||||
echo "Using version $version for $apk given in build_settings"
|
||||
hard_vers=true
|
||||
elif [[ "$apk" == "com.google.android.apps.youtube.music" && "$YTM_VERSION" != "" ]]; then
|
||||
version="$YTM_VERSION"
|
||||
echo "Using version $version for $apk given in build_settings"
|
||||
hard_vers=true
|
||||
else
|
||||
echo "Figuring out best version for $apk"
|
||||
supported_vers="$(jq -r '.[].compatiblePackages[] | select(.name == "'$apk'") | .versions | last' patches.json)"
|
||||
version=0
|
||||
for vers in $supported_vers; do
|
||||
[ $vers != "null" ] && [[ $(ver_less_than $vers $version) == true || $version == 0 ]] && version=$vers
|
||||
done
|
||||
hard_vers=false
|
||||
fi
|
||||
|
||||
version_present=$(jq -r ".\"$apk\"" versions.json)
|
||||
[[ -z "$version_present" || "$version" == "null" ]] && version_present=0
|
||||
[[ "$version" == "0" ]] && version=latest
|
||||
|
||||
[[ "$version_present" != "$version" || ! -f $apk.apk || $2 == force ]] && ${apks[$apk]} || echo "Recommended version ($version_present) of "$apk" is already present"
|
||||
done
|
Loading…
Reference in a new issue