1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-19 23:28:29 +02:00

scripts: run ipkg-make-index through shellcheck

Use quotes and replace `` by $() to pass the shellcheck tests.

Signed-off-by: Paul Spooren <mail@aparcar.org>
This commit is contained in:
Paul Spooren 2023-05-09 19:06:23 +02:00
parent e882af2850
commit e6aa1a70e6

View File

@ -3,25 +3,25 @@ set -e
pkg_dir=$1 pkg_dir=$1
if [ -z $pkg_dir ] || [ ! -d $pkg_dir ]; then if [ -z "$pkg_dir" ] || [ ! -d "$pkg_dir" ]; then
echo "Usage: ipkg-make-index <package_directory>" >&2 echo "Usage: ipkg-make-index <package_directory>" >&2
exit 1 exit 1
fi fi
empty=1 empty=1
for pkg in `find $pkg_dir -name '*.ipk' | sort`; do for pkg in $(find "$pkg_dir" -name '*.ipk' | sort); do
empty= empty=
name="${pkg##*/}" name="${pkg##*/}"
name="${name%%_*}" name="${name%%_*}"
[[ "$name" = "kernel" ]] && continue [[ "$name" = "kernel" ]] && continue
[[ "$name" = "libc" ]] && continue [[ "$name" = "libc" ]] && continue
echo "Generating index for package $pkg" >&2 echo "Generating index for package $pkg" >&2
file_size=$(stat -L -c%s $pkg) file_size=$(stat -L -c%s "$pkg")
sha256sum=$($MKHASH sha256 $pkg) sha256sum=$($MKHASH sha256 "$pkg")
# Take pains to make variable value sed-safe # Take pains to make variable value sed-safe
sed_safe_pkg=`echo $pkg | sed -e 's/^\.\///g' -e 's/\\//\\\\\\//g'` sed_safe_pkg=$(echo "$pkg" | sed -e 's/^\.\///g' -e 's/\\//\\\\\\//g')
tar -xzOf $pkg ./control.tar.gz | tar xzOf - ./control | sed -e "s/^Description:/Filename: $sed_safe_pkg\\ tar -xzOf "$pkg" ./control.tar.gz | tar xzOf - ./control | sed -e "s/^Description:/Filename: $sed_safe_pkg\\
Size: $file_size\\ Size: $file_size\\
SHA256sum: $sha256sum\\ SHA256sum: $sha256sum\\
Description:/" Description:/"