Fix shellcheck warnings

This commit is contained in:
a1346054 2021-08-22 20:48:55 +00:00
parent d44475f041
commit adb51f6904
3 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh
VERSION=`cat share/torbrowser-launcher/version`
VERSION=$(cat share/torbrowser-launcher/version)
# clean up from last build
rm -r build deb_dist

View File

@ -1,6 +1,6 @@
#!/bin/sh
VERSION=`cat share/torbrowser-launcher/version`
VERSION=$(cat share/torbrowser-launcher/version)
# clean up from last build
rm -r build dist

View File

@ -12,18 +12,18 @@
# login = anonymous
# allow_unsigned_uploads = 0
VERSION=`cat share/torbrowser-launcher/version`
VERSION=$(cat share/torbrowser-launcher/version)
# Make a source pacakge
rm -rf deb_dist
python3 setup.py --command-packages=stdeb.command sdist_dsc
# Sign it
cd deb_dist/torbrowser-launcher-$VERSION
cd "deb_dist/torbrowser-launcher-$VERSION"
dpkg-buildpackage -S
#dpkg-buildpackage -S -pqubes-gpg-client-wrapper -k927F419D7EC82C2F149C1BD1403C2657CD994F73
cd ..
# Push it to the ppa
dput ppa torbrowser-launcher_$VERSION-1_source.changes
dput ppa "torbrowser-launcher_$VERSION-1_source.changes"
cd ..