fix shellcheck warnings in bash scripts

This commit is contained in:
a1346054 2022-07-22 15:48:02 +00:00
parent 160dd877ab
commit 41d67bc449
No known key found for this signature in database
GPG Key ID: D149AD21DC40440C
3 changed files with 4 additions and 4 deletions

View File

@ -17,4 +17,4 @@ python setup.py sdist
D=dist/borgbackup-$R.tar.gz
$GPG --detach-sign --local-user "Thomas Waldmann" --armor --output $D.asc $D
$GPG --detach-sign --local-user "Thomas Waldmann" --armor --output "$D.asc" "$D"

View File

@ -14,7 +14,7 @@ else
fi
for file in dist/borg-*; do
$GPG --local-user "Thomas Waldmann" --armor --detach-sign --output $file.asc $file
$GPG --local-user "Thomas Waldmann" --armor --detach-sign --output "$file.asc" "$file"
done
touch -t $D dist/*
touch -t "$D" dist/*

View File

@ -15,4 +15,4 @@ fi
D=dist/borgbackup-$R.tar.gz
twine upload $D.asc $D
twine upload "$D.asc" "$D"