mirror of
https://github.com/aria2/aria2.git
synced 2025-04-04 04:57:38 +03:00
Fix shellcheck warnings
This commit is contained in:
parent
bbef0f0492
commit
aea080969c
5 changed files with 20 additions and 20 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue