Fix shellcheck warnings

This commit is contained in:
a1346054 2021-08-21 13:03:42 +00:00 committed by Tatsuhiro Tsujikawa
parent bbef0f0492
commit aea080969c
5 changed files with 20 additions and 20 deletions

View file

@ -32,7 +32,7 @@
# files in the program, then also delete it here. # files in the program, then also delete it here.
# cd to the directory where this script exists. # cd to the directory where this script exists.
cd $(dirname $0) cd "$(dirname $0)"
. ./script-helper . ./script-helper
get_version get_version
@ -43,8 +43,8 @@ if [ -z "$VERSION" ]; then
fi fi
DIST_DIR=aria2-$VERSION-aarch64-linux-android-build1 DIST_DIR=aria2-$VERSION-aarch64-linux-android-build1
mkdir $DIST_DIR mkdir "$DIST_DIR"
cp AUTHORS COPYING ChangeLog LICENSE.OpenSSL NEWS README.html README.android \ cp AUTHORS COPYING ChangeLog LICENSE.OpenSSL NEWS README.html README.android \
android-out/aria2c $DIST_DIR android-out/aria2c "$DIST_DIR"
zip -9 -r $DIST_DIR.zip $DIST_DIR zip -9 -r "$DIST_DIR.zip" "$DIST_DIR"
rm -rf $DIST_DIR rm -rf "$DIST_DIR"

View file

@ -6,27 +6,27 @@ BUILDDIR=/tmp/aria2buildtest
if [ ! -d "$BUILDDIR" ]; then if [ ! -d "$BUILDDIR" ]; then
mkdir "$BUILDDIR" \ mkdir "$BUILDDIR" \
|| { echo "Failed to create directory $BUILDDIR" && exit -1; } || { echo "Failed to create directory $BUILDDIR" && exit 1; }
fi fi
echo -n "Starting build test " echo -n "Starting build test "
echo `date` echo "$(date)"
# build CONFIGURE_OPTS BIN_SUFFIX DESC # build CONFIGURE_OPTS BIN_SUFFIX DESC
build() build()
{ {
echo -n "new build() started at " echo -n "new build() started at "
echo `date` echo "$(date)"
echo "*** configure opts=$1" echo "*** configure opts=$1"
BIN_NAME="aria2c_$2" BIN_NAME="aria2c_$2"
if [ -f "$BUILDDIR/$BIN_NAME" ]; then if [ -f "$BUILDDIR/$BIN_NAME" ]; then
echo "$BIN_NAME exists, skipping" echo "$BIN_NAME exists, skipping"
return return
fi fi
./configure $1 2>&1 | tee "$BUILDDIR/configure_$2.log"\ ./configure $1 2>&1 | tee "$BUILDDIR/configure_$2.log" \
&& cp config.log "$BUILDDIR/config.log_$2" \ && cp config.log "$BUILDDIR/config.log_$2" \
&& LANG=C make clean \ && LANG=C make clean \
&& LANG=C make -j2 check 2>&1 |tee "$BUILDDIR/aria2c_$2.log" \ && LANG=C make -j2 check 2>&1 | tee "$BUILDDIR/aria2c_$2.log" \
&& cp src/aria2c "$BUILDDIR/aria2c_$2" && cp src/aria2c "$BUILDDIR/aria2c_$2"
if [ -f "test/aria2c.log" ]; then if [ -f "test/aria2c.log" ]; then
@ -36,8 +36,8 @@ build()
clear() clear()
{ {
for file in `ls $BUILDDIR`; do for file in $(ls "$BUILDDIR"); do
rm -f "$BUILDDIR/$file"; rm -f "$BUILDDIR/$file"
done done
} }

View file

@ -33,7 +33,7 @@ echo -n "en@quot en@boldquot" > "$PO_DIR"/LINGUAS
for file in "$WORK_DIR"/*.po; do for file in "$WORK_DIR"/*.po; do
# First remove useless '\r' in messages # First remove useless '\r' in messages
sed -i -e 's/\\r//' "$file" sed -i -e 's/\\r//' "$file"
bn=`basename "$file"` bn=$(basename "$file")
bn=${bn#aria2-} bn=${bn#aria2-}
dst="$PO_DIR"/"$bn" dst="$PO_DIR"/"$bn"
# copy file to po directory # copy file to po directory

View file

@ -36,7 +36,7 @@ test -z "$BUILD_VER" && BUILD_VER=1
test -z "$LABEL" && LABEL=$HOST test -z "$LABEL" && LABEL=$HOST
# cd to the directory where this script exists. # cd to the directory where this script exists.
cd $(dirname $0) cd "$(dirname "$0")"
. ./script-helper . ./script-helper
get_version get_version
@ -48,8 +48,8 @@ fi
DIST_DIR=aria2-${VERSION}-${LABEL}-build${BUILD_VER} DIST_DIR=aria2-${VERSION}-${LABEL}-build${BUILD_VER}
mkdir $DIST_DIR mkdir "$DIST_DIR"
cp AUTHORS COPYING ChangeLog LICENSE.OpenSSL NEWS README.html README.mingw \ cp AUTHORS COPYING ChangeLog LICENSE.OpenSSL NEWS README.html README.mingw \
mingw-out/aria2c.exe $DIST_DIR mingw-out/aria2c.exe "$DIST_DIR"
zip -9 -r $DIST_DIR.zip $DIST_DIR zip -9 -r "$DIST_DIR.zip" "$DIST_DIR"
rm -rf $DIST_DIR rm -rf "$DIST_DIR"

View file

@ -29,7 +29,7 @@
# version. If you delete this exception statement from all source # version. If you delete this exception statement from all source
# files in the program, then also delete it here. # files in the program, then also delete it here.
get_version () { get_version() {
VERSION=`grep AC_INIT configure.ac | sed '/AC_INIT/ s/AC_INIT(\[aria2\],\[\([^]]\+\)\],.*/\1/'` VERSION=$(grep AC_INIT configure.ac | sed '/AC_INIT/ s/AC_INIT(\[aria2\],\[\([^]]\+\)\],.*/\1/')
echo "Version: $VERSION" echo "Version: $VERSION"
} }