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.
# cd to the directory where this script exists.
cd $(dirname $0)
cd "$(dirname $0)"
. ./script-helper
get_version
@ -43,8 +43,8 @@ if [ -z "$VERSION" ]; then
fi
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 \
android-out/aria2c $DIST_DIR
zip -9 -r $DIST_DIR.zip $DIST_DIR
rm -rf $DIST_DIR
android-out/aria2c "$DIST_DIR"
zip -9 -r "$DIST_DIR.zip" "$DIST_DIR"
rm -rf "$DIST_DIR"