2020-12-30 18:26:25 +03:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# AdGuard Home Release Script
|
|
|
|
#
|
2021-05-19 20:31:20 +03:00
|
|
|
# The commentary in this file is written with the assumption that the reader
|
|
|
|
# only has superficial knowledge of the POSIX shell language and alike.
|
|
|
|
# Experienced readers may find it overly verbose.
|
|
|
|
|
|
|
|
# The default verbosity level is 0. Show log messages if the caller requested
|
|
|
|
# verbosity level greather than 0. Show every command that is run if the
|
|
|
|
# verbosity level is greater than 1. Show the environment if the verbosity
|
|
|
|
# level is greater than 2. Otherwise, print nothing.
|
2020-12-30 18:26:25 +03:00
|
|
|
#
|
2021-05-19 20:31:20 +03:00
|
|
|
# The level of verbosity for the build script is the same minus one level. See
|
|
|
|
# below in build().
|
|
|
|
verbose="${VERBOSE:-0}"
|
|
|
|
readonly verbose
|
|
|
|
|
2021-03-10 20:12:18 +03:00
|
|
|
if [ "$verbose" -gt '2' ]
|
2020-12-30 18:26:25 +03:00
|
|
|
then
|
|
|
|
env
|
|
|
|
set -x
|
2021-03-10 20:12:18 +03:00
|
|
|
elif [ "$verbose" -gt '1' ]
|
2020-12-30 18:26:25 +03:00
|
|
|
then
|
|
|
|
set -x
|
|
|
|
fi
|
|
|
|
|
|
|
|
# By default, sign the packages, but allow users to skip that step.
|
2021-05-19 20:31:20 +03:00
|
|
|
sign="${SIGN:-1}"
|
|
|
|
readonly sign
|
2020-12-30 18:26:25 +03:00
|
|
|
|
|
|
|
# Exit the script if a pipeline fails (-e), prevent accidental filename
|
|
|
|
# expansion (-f), and consider undefined variables as errors (-u).
|
|
|
|
set -e -f -u
|
|
|
|
|
2021-05-19 20:31:20 +03:00
|
|
|
# Function log is an echo wrapper that writes to stderr if the caller requested
|
|
|
|
# verbosity level greater than 0. Otherwise, it does nothing.
|
2020-12-30 18:26:25 +03:00
|
|
|
log() {
|
|
|
|
if [ "$verbose" -gt '0' ]
|
|
|
|
then
|
|
|
|
# Don't use quotes to get word splitting.
|
2021-05-21 15:40:44 +03:00
|
|
|
echo "$1" 1>&2
|
2020-12-30 18:26:25 +03:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
log 'starting to build AdGuard Home release'
|
|
|
|
|
2021-05-19 20:31:20 +03:00
|
|
|
# Require the channel to be set. Additional validation is performed later by
|
|
|
|
# go-build.sh.
|
2021-06-10 20:09:00 +03:00
|
|
|
channel="${CHANNEL:?please set CHANNEL}"
|
2021-05-19 20:31:20 +03:00
|
|
|
readonly channel
|
2020-12-30 18:26:25 +03:00
|
|
|
|
2021-05-19 20:31:20 +03:00
|
|
|
# Check VERSION against the default value from the Makefile. If it is that, use
|
|
|
|
# the version calculation script.
|
2021-05-24 21:46:33 +03:00
|
|
|
version="${VERSION:-}"
|
|
|
|
if [ "$version" = 'v0.0.0' ] || [ "$version" = '' ]
|
2020-12-30 18:26:25 +03:00
|
|
|
then
|
2021-05-19 20:31:20 +03:00
|
|
|
version="$( sh ./scripts/make/version.sh )"
|
2020-12-30 18:26:25 +03:00
|
|
|
fi
|
2021-05-19 20:31:20 +03:00
|
|
|
readonly version
|
2020-12-30 18:26:25 +03:00
|
|
|
|
|
|
|
log "channel '$channel'"
|
|
|
|
log "version '$version'"
|
|
|
|
|
2021-05-19 20:31:20 +03:00
|
|
|
# Check architecture and OS limiters. Add spaces to the local versions for
|
|
|
|
# better pattern matching.
|
2021-03-10 20:12:18 +03:00
|
|
|
if [ "${ARCH:-}" != '' ]
|
|
|
|
then
|
|
|
|
log "arches: '$ARCH'"
|
2021-05-19 20:31:20 +03:00
|
|
|
arches=" $ARCH "
|
2021-03-10 20:12:18 +03:00
|
|
|
else
|
2021-05-19 20:31:20 +03:00
|
|
|
arches=''
|
2021-03-10 20:12:18 +03:00
|
|
|
fi
|
2021-05-19 20:31:20 +03:00
|
|
|
readonly arches
|
2021-03-10 20:12:18 +03:00
|
|
|
|
|
|
|
if [ "${OS:-}" != '' ]
|
|
|
|
then
|
|
|
|
log "oses: '$OS'"
|
2021-05-19 20:31:20 +03:00
|
|
|
oses=" $OS "
|
2021-03-10 20:12:18 +03:00
|
|
|
else
|
2021-05-19 20:31:20 +03:00
|
|
|
oses=''
|
2021-03-10 20:12:18 +03:00
|
|
|
fi
|
2021-05-19 20:31:20 +03:00
|
|
|
readonly oses
|
|
|
|
|
2021-05-21 15:40:44 +03:00
|
|
|
snap_enabled="${BUILD_SNAP:-1}"
|
2021-05-19 20:31:20 +03:00
|
|
|
readonly snap_enabled
|
2021-03-10 20:12:18 +03:00
|
|
|
|
2021-05-19 20:31:20 +03:00
|
|
|
if [ "$snap_enabled" -eq '0' ]
|
2021-03-10 20:12:18 +03:00
|
|
|
then
|
|
|
|
log 'snap: disabled'
|
|
|
|
fi
|
|
|
|
|
2021-05-19 20:31:20 +03:00
|
|
|
# Require the gpg key and passphrase to be set if the signing is required.
|
|
|
|
if [ "$sign" -eq '1' ]
|
2020-12-30 18:26:25 +03:00
|
|
|
then
|
2021-06-10 20:09:00 +03:00
|
|
|
gpg_key_passphrase="${GPG_KEY_PASSPHRASE:?please set GPG_KEY_PASSPHRASE or unset SIGN}"
|
|
|
|
gpg_key="${GPG_KEY:?please set GPG_KEY or unset SIGN}"
|
2021-05-19 20:31:20 +03:00
|
|
|
else
|
|
|
|
gpg_key_passphrase=''
|
|
|
|
gpg_key=''
|
2020-12-30 18:26:25 +03:00
|
|
|
fi
|
2021-05-19 20:31:20 +03:00
|
|
|
readonly gpg_key_passphrase gpg_key
|
2020-12-30 18:26:25 +03:00
|
|
|
|
|
|
|
# The default distribution files directory is dist.
|
2021-05-19 20:31:20 +03:00
|
|
|
dist="${DIST_DIR:-dist}"
|
|
|
|
readonly dist
|
2020-12-30 18:26:25 +03:00
|
|
|
|
|
|
|
log "checking tools"
|
|
|
|
|
2021-05-19 20:31:20 +03:00
|
|
|
# Make sure we fail gracefully if one of the tools we need is missing. Use
|
|
|
|
# alternatives when available.
|
|
|
|
sha256sum_cmd='sha256sum'
|
|
|
|
for tool in gpg gzip sed "$sha256sum_cmd" snapcraft tar zip
|
2020-12-30 18:26:25 +03:00
|
|
|
do
|
2021-05-21 15:40:44 +03:00
|
|
|
if ! command -v "$tool" > /dev/null
|
2021-05-19 20:31:20 +03:00
|
|
|
then
|
2021-05-21 15:40:44 +03:00
|
|
|
if [ "$tool" = "$sha256sum_cmd" ] && command -v 'shasum' > /dev/null
|
2021-05-19 20:31:20 +03:00
|
|
|
then
|
|
|
|
# macOS doesn't have sha256sum installed by default, but
|
|
|
|
# it does have shasum.
|
|
|
|
log 'replacing sha256sum with shasum -a 256'
|
|
|
|
sha256sum_cmd='shasum -a 256'
|
|
|
|
else
|
|
|
|
log "pieces don't fit, '$tool' not found"
|
|
|
|
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
fi
|
2020-12-30 18:26:25 +03:00
|
|
|
done
|
2021-05-19 20:31:20 +03:00
|
|
|
readonly sha256sum_cmd
|
2020-12-30 18:26:25 +03:00
|
|
|
|
2021-05-19 20:31:20 +03:00
|
|
|
# Data section. Arrange data into space-separated tables for read -r to read.
|
|
|
|
# Use 0 for missing values.
|
2021-05-21 15:40:44 +03:00
|
|
|
#
|
2021-05-19 20:31:20 +03:00
|
|
|
# TODO(a.garipov): Remove armv6, because it was always overwritten by armv7.
|
|
|
|
# Rename armv7 to armhf. Rename the 386 snap to i386.
|
2020-12-30 23:18:15 +03:00
|
|
|
|
2020-12-30 18:26:25 +03:00
|
|
|
# os arch arm mips snap
|
2021-05-19 20:31:20 +03:00
|
|
|
platforms="\
|
2020-12-30 18:26:25 +03:00
|
|
|
darwin amd64 0 0 0
|
2021-05-21 14:55:42 +03:00
|
|
|
darwin arm64 0 0 0
|
2020-12-30 18:26:25 +03:00
|
|
|
freebsd 386 0 0 0
|
|
|
|
freebsd amd64 0 0 0
|
|
|
|
freebsd arm 5 0 0
|
|
|
|
freebsd arm 6 0 0
|
|
|
|
freebsd arm 7 0 0
|
2020-12-30 20:36:57 +03:00
|
|
|
freebsd arm64 0 0 0
|
2020-12-30 23:18:15 +03:00
|
|
|
linux 386 0 0 386
|
2020-12-30 18:26:25 +03:00
|
|
|
linux amd64 0 0 amd64
|
|
|
|
linux arm 5 0 0
|
2020-12-30 23:18:15 +03:00
|
|
|
linux arm 6 0 armv6
|
|
|
|
linux arm 7 0 armv7
|
2020-12-30 18:26:25 +03:00
|
|
|
linux arm64 0 0 arm64
|
|
|
|
linux mips 0 softfloat 0
|
|
|
|
linux mips64 0 softfloat 0
|
|
|
|
linux mips64le 0 softfloat 0
|
|
|
|
linux mipsle 0 softfloat 0
|
|
|
|
linux ppc64le 0 0 0
|
2021-06-03 21:04:13 +03:00
|
|
|
openbsd amd64 0 0 0
|
|
|
|
openbsd arm64 0 0 0
|
2020-12-30 18:26:25 +03:00
|
|
|
windows 386 0 0 0
|
|
|
|
windows amd64 0 0 0"
|
2021-05-19 20:31:20 +03:00
|
|
|
readonly platforms
|
2020-12-30 18:26:25 +03:00
|
|
|
|
2021-05-19 20:31:20 +03:00
|
|
|
# Function build builds the release for one platform. It builds a binary, an
|
|
|
|
# archive and, if needed, a snap package.
|
2020-12-30 18:26:25 +03:00
|
|
|
build() {
|
2021-05-19 20:31:20 +03:00
|
|
|
# Get the arguments. Here and below, use the "build_" prefix for all
|
|
|
|
# variables local to function build.
|
2020-12-30 18:26:25 +03:00
|
|
|
build_dir="${dist}/${1}/AdGuardHome"\
|
|
|
|
build_ar="$2"\
|
|
|
|
build_os="$3"\
|
|
|
|
build_arch="$4"\
|
|
|
|
build_arm="$5"\
|
|
|
|
build_mips="$6"\
|
|
|
|
build_snap="$7"\
|
|
|
|
;
|
|
|
|
|
2021-05-19 20:31:20 +03:00
|
|
|
# Use the ".exe" filename extension if we build a Windows release.
|
2020-12-30 18:26:25 +03:00
|
|
|
if [ "$build_os" = 'windows' ]
|
|
|
|
then
|
|
|
|
build_output="./${build_dir}/AdGuardHome.exe"
|
|
|
|
else
|
|
|
|
build_output="./${build_dir}/AdGuardHome"
|
|
|
|
fi
|
|
|
|
|
|
|
|
mkdir -p "./${build_dir}"
|
|
|
|
|
|
|
|
# Build the binary.
|
|
|
|
#
|
2021-05-19 20:31:20 +03:00
|
|
|
# Set GOARM and GOMIPS to an empty string if $build_arm and $build_mips
|
|
|
|
# are zero by removing the zero as if it's a prefix.
|
2020-12-30 18:26:25 +03:00
|
|
|
#
|
2021-05-19 20:31:20 +03:00
|
|
|
# Don't use quotes with $build_par because we want an empty space if
|
|
|
|
# parallelism wasn't set.
|
2020-12-30 18:26:25 +03:00
|
|
|
env\
|
|
|
|
GOARCH="$build_arch"\
|
|
|
|
GOARM="${build_arm#0}"\
|
|
|
|
GOMIPS="${build_mips#0}"\
|
|
|
|
GOOS="$os"\
|
|
|
|
VERBOSE="$(( verbose - 1 ))"\
|
2020-12-31 13:55:39 +03:00
|
|
|
VERSION="$version"\
|
2020-12-30 18:26:25 +03:00
|
|
|
OUT="$build_output"\
|
|
|
|
sh ./scripts/make/go-build.sh\
|
|
|
|
;
|
|
|
|
|
|
|
|
log "$build_output"
|
|
|
|
|
2021-05-19 20:31:20 +03:00
|
|
|
if [ "$sign" -eq '1' ]
|
2020-12-30 18:26:25 +03:00
|
|
|
then
|
|
|
|
gpg\
|
|
|
|
--default-key "$gpg_key"\
|
|
|
|
--detach-sig\
|
|
|
|
--passphrase "$gpg_key_passphrase"\
|
|
|
|
--pinentry-mode loopback\
|
|
|
|
-q\
|
|
|
|
"$build_output"\
|
|
|
|
;
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Prepare the build directory for archiving.
|
|
|
|
cp ./CHANGELOG.md ./LICENSE.txt ./README.md "$build_dir"
|
|
|
|
|
2021-05-19 20:31:20 +03:00
|
|
|
# Make archives. Windows and macOS prefer ZIP archives; the rest,
|
|
|
|
# gzipped tarballs.
|
2020-12-30 18:26:25 +03:00
|
|
|
case "$build_os"
|
|
|
|
in
|
|
|
|
('darwin'|'windows')
|
2021-05-04 16:07:59 +03:00
|
|
|
build_archive="./${dist}/${build_ar}.zip"
|
|
|
|
# TODO(a.garipov): Find an option similar to the -C option of
|
|
|
|
# tar for zip.
|
|
|
|
( cd "${dist}/${1}" && zip -9 -q -r "../../${build_archive}" "./AdGuardHome" )
|
2020-12-30 18:26:25 +03:00
|
|
|
;;
|
|
|
|
(*)
|
|
|
|
build_archive="./${dist}/${build_ar}.tar.gz"
|
2021-05-04 16:07:59 +03:00
|
|
|
tar -C "./${dist}/${1}" -c -f - "./AdGuardHome" | gzip -9 - > "$build_archive"
|
2020-12-30 18:26:25 +03:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
log "$build_archive"
|
|
|
|
|
2021-05-19 20:31:20 +03:00
|
|
|
# build_snap is a string, so use string comparison for it.
|
|
|
|
#
|
|
|
|
# TODO(a.garipov): Consider using a different empty value in the
|
|
|
|
# platforms table.
|
|
|
|
if [ "$build_snap" = '0' ] || [ "$snap_enabled" -eq '0' ]
|
2020-12-30 18:26:25 +03:00
|
|
|
then
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Prepare snap build.
|
|
|
|
build_snap_output="./${dist}/AdGuardHome_${build_snap}.snap"
|
|
|
|
build_snap_dir="${build_snap_output}.dir"
|
|
|
|
|
|
|
|
# Create the meta subdirectory and copy files there.
|
|
|
|
mkdir -p "${build_snap_dir}/meta"
|
|
|
|
cp "$build_output"\
|
|
|
|
'./scripts/snap/local/adguard-home-web.sh'\
|
|
|
|
"$build_snap_dir"
|
|
|
|
cp -r './scripts/snap/gui'\
|
|
|
|
"${build_snap_dir}/meta/"
|
|
|
|
|
2020-12-30 23:18:15 +03:00
|
|
|
# TODO(a.garipov): Remove this crutch later.
|
|
|
|
case "$build_snap"
|
|
|
|
in
|
|
|
|
('386')
|
|
|
|
build_snap_arch="i386"
|
|
|
|
;;
|
|
|
|
('armv6'|'armv7')
|
|
|
|
build_snap_arch="armhf"
|
|
|
|
;;
|
|
|
|
(*)
|
|
|
|
build_snap_arch="$build_snap"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2020-12-30 18:26:25 +03:00
|
|
|
# Create a snap.yaml file, setting the values.
|
|
|
|
sed -e 's/%VERSION%/'"$version"'/'\
|
2020-12-30 23:18:15 +03:00
|
|
|
-e 's/%ARCH%/'"$build_snap_arch"'/'\
|
2020-12-30 18:26:25 +03:00
|
|
|
./scripts/snap/snap.tmpl.yaml\
|
|
|
|
>"${build_snap_dir}/meta/snap.yaml"
|
|
|
|
|
2021-05-19 20:31:20 +03:00
|
|
|
# TODO(a.garipov): The snapcraft tool will *always* write everything,
|
|
|
|
# including errors, to stdout. And there doesn't seem to be a way to
|
|
|
|
# change that. So, save the combined output, but only show it when
|
|
|
|
# snapcraft actually fails.
|
2020-12-30 18:26:25 +03:00
|
|
|
set +e
|
|
|
|
build_snapcraft_output="$(
|
2021-04-09 15:07:18 +03:00
|
|
|
snapcraft pack "$build_snap_dir" --output "$build_snap_output" 2>&1
|
2020-12-30 18:26:25 +03:00
|
|
|
)"
|
|
|
|
build_snapcraft_exit_code="$?"
|
|
|
|
set -e
|
|
|
|
if [ "$build_snapcraft_exit_code" != '0' ]
|
|
|
|
then
|
|
|
|
log "$build_snapcraft_output"
|
|
|
|
exit "$build_snapcraft_exit_code"
|
|
|
|
fi
|
|
|
|
|
|
|
|
log "$build_snap_output"
|
|
|
|
}
|
|
|
|
|
|
|
|
log "starting builds"
|
|
|
|
|
2021-05-19 20:31:20 +03:00
|
|
|
# Go over all platforms defined in the space-separated table above, tweak the
|
|
|
|
# values where necessary, and feed to build.
|
2020-12-30 18:26:25 +03:00
|
|
|
echo "$platforms" | while read -r os arch arm mips snap
|
|
|
|
do
|
2021-05-19 20:31:20 +03:00
|
|
|
# See if the architecture or the OS is in the allowlist. To do so, try
|
|
|
|
# removing everything that matches the pattern (well, a prefix, but that
|
|
|
|
# doesn't matter here) containing the arch or the OS.
|
2021-03-10 20:12:18 +03:00
|
|
|
#
|
2021-05-19 20:31:20 +03:00
|
|
|
# For example, when $arches is " amd64 arm64 " and $arch is "amd64",
|
|
|
|
# then the pattern to remove is "* amd64 *", so the whole string becomes
|
|
|
|
# empty. On the other hand, if $arch is "windows", then the pattern is
|
|
|
|
# "* windows *", which doesn't match, so nothing is removed.
|
2021-03-10 20:12:18 +03:00
|
|
|
#
|
|
|
|
# See https://stackoverflow.com/a/43912605/1892060.
|
|
|
|
if [ "${arches##* $arch *}" != '' ]
|
|
|
|
then
|
|
|
|
log "$arch excluded, continuing"
|
|
|
|
|
|
|
|
continue
|
|
|
|
elif [ "${oses##* $os *}" != '' ]
|
|
|
|
then
|
|
|
|
log "$os excluded, continuing"
|
|
|
|
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
2020-12-30 18:26:25 +03:00
|
|
|
case "$arch"
|
|
|
|
in
|
|
|
|
(arm)
|
|
|
|
dir="AdGuardHome_${os}_${arch}_${arm}"
|
|
|
|
ar="AdGuardHome_${os}_${arch}v${arm}"
|
|
|
|
;;
|
|
|
|
(mips*)
|
|
|
|
dir="AdGuardHome_${os}_${arch}_${mips}"
|
|
|
|
ar="$dir"
|
|
|
|
;;
|
|
|
|
(*)
|
|
|
|
dir="AdGuardHome_${os}_${arch}"
|
|
|
|
ar="$dir"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
build "$dir" "$ar" "$os" "$arch" "$arm" "$mips" "$snap"
|
|
|
|
done
|
|
|
|
|
2021-05-04 16:07:59 +03:00
|
|
|
log "packing frontend"
|
|
|
|
|
|
|
|
build_archive="./${dist}/AdGuardHome_frontend.tar.gz"
|
|
|
|
tar -c -f - ./build ./build2 | gzip -9 - > "$build_archive"
|
|
|
|
log "$build_archive"
|
|
|
|
|
2020-12-30 18:26:25 +03:00
|
|
|
log "calculating checksums"
|
|
|
|
|
2021-05-19 20:31:20 +03:00
|
|
|
# Calculate the checksums of the files in a subshell with a different working
|
|
|
|
# directory. Don't use ls, because files matching one of the patterns may be
|
|
|
|
# absent, which will make ls return with a non-zero status code.
|
2020-12-30 18:26:25 +03:00
|
|
|
(
|
|
|
|
cd "./${dist}"
|
|
|
|
|
2021-06-10 20:09:00 +03:00
|
|
|
find . ! -name . -prune \( -name '*.tar.gz' -o -name '*.zip' \)\
|
|
|
|
-exec "$sha256sum_cmd" {} +\
|
|
|
|
> ./checksums.txt
|
2020-12-30 18:26:25 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
log "writing versions"
|
|
|
|
|
2021-02-02 18:31:47 +03:00
|
|
|
echo "version=$version" > "./${dist}/version.txt"
|
2020-12-30 18:26:25 +03:00
|
|
|
|
|
|
|
# Create the verison.json file.
|
|
|
|
|
2021-05-19 20:31:20 +03:00
|
|
|
version_download_url="https://static.adguard.com/adguardhome/${channel}"
|
|
|
|
version_json="./${dist}/version.json"
|
|
|
|
readonly version_download_url version_json
|
2020-12-30 18:26:25 +03:00
|
|
|
|
|
|
|
# Point users to the master branch if the channel is edge.
|
|
|
|
if [ "$channel" = 'edge' ]
|
|
|
|
then
|
2021-05-19 20:31:20 +03:00
|
|
|
version_history_url='https://github.com/AdguardTeam/AdGuardHome/commits/master'
|
2020-12-30 18:26:25 +03:00
|
|
|
else
|
2021-05-19 20:31:20 +03:00
|
|
|
version_history_url='https://github.com/AdguardTeam/AdGuardHome/releases'
|
2020-12-30 18:26:25 +03:00
|
|
|
fi
|
2021-05-19 20:31:20 +03:00
|
|
|
readonly version_history_url
|
2020-12-30 18:26:25 +03:00
|
|
|
|
|
|
|
rm -f "$version_json"
|
|
|
|
echo "{
|
|
|
|
\"version\": \"${version}\",
|
|
|
|
\"announcement\": \"AdGuard Home ${version} is now available!\",
|
|
|
|
\"announcement_url\": \"${version_history_url}\",
|
|
|
|
\"selfupdate_min_version\": \"0.0\",
|
|
|
|
" >> "$version_json"
|
|
|
|
|
2021-05-19 20:31:20 +03:00
|
|
|
# Same as with checksums above, don't use ls, because files matching one of the
|
|
|
|
# patterns may be absent.
|
|
|
|
ar_files="$( find "./${dist}/" ! -name "${dist}" -prune \( -name '*.tar.gz' -o -name '*.zip' \) )"
|
|
|
|
ar_files_len="$( echo "$ar_files" | wc -l )"
|
|
|
|
readonly ar_files ar_files_len
|
2021-03-10 20:12:18 +03:00
|
|
|
|
|
|
|
i='1'
|
|
|
|
# Don't use quotes to get word splitting.
|
|
|
|
for f in $ar_files
|
|
|
|
do
|
|
|
|
platform="$f"
|
2020-12-30 18:26:25 +03:00
|
|
|
|
2021-03-10 20:12:18 +03:00
|
|
|
# Remove the prefix.
|
|
|
|
platform="${platform#./${dist}/AdGuardHome_}"
|
2020-12-30 18:26:25 +03:00
|
|
|
|
2021-03-10 20:12:18 +03:00
|
|
|
# Remove the filename extensions.
|
|
|
|
platform="${platform%.zip}"
|
|
|
|
platform="${platform%.tar.gz}"
|
2020-12-30 18:26:25 +03:00
|
|
|
|
2021-03-10 20:12:18 +03:00
|
|
|
# Use the filename's base path.
|
|
|
|
filename="${f#./${dist}/}"
|
2020-12-30 18:26:25 +03:00
|
|
|
|
2021-05-19 20:31:20 +03:00
|
|
|
if [ "$i" -eq "$ar_files_len" ]
|
2021-03-10 20:12:18 +03:00
|
|
|
then
|
|
|
|
echo " \"download_${platform}\": \"${version_download_url}/${filename}\"" >> "$version_json"
|
|
|
|
else
|
|
|
|
echo " \"download_${platform}\": \"${version_download_url}/${filename}\"," >> "$version_json"
|
|
|
|
fi
|
2020-12-31 13:55:39 +03:00
|
|
|
|
2021-03-10 20:12:18 +03:00
|
|
|
i="$(( i + 1 ))"
|
|
|
|
done
|
2020-12-30 18:26:25 +03:00
|
|
|
|
|
|
|
echo '}' >> "$version_json"
|
|
|
|
|
|
|
|
log "finished"
|