mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-21 23:33:07 +00:00
fix shellcheck warnings in bash scripts
This commit is contained in:
parent
160dd877ab
commit
41d67bc449
3 changed files with 4 additions and 4 deletions
|
@ -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"
|
||||
|
|
|
@ -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/*
|
||||
|
|
|
@ -15,4 +15,4 @@ fi
|
|||
|
||||
D=dist/borgbackup-$R.tar.gz
|
||||
|
||||
twine upload $D.asc $D
|
||||
twine upload "$D.asc" "$D"
|
||||
|
|
Loading…
Reference in a new issue