mirror of
https://github.com/torproject/torbrowser-launcher.git
synced 2024-11-23 01:19:42 +00:00
Fix shellcheck warnings
This commit is contained in:
parent
d44475f041
commit
adb51f6904
@ -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
|
||||
|
@ -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
|
||||
|
@ -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 ..
|
||||
|
Loading…
Reference in New Issue
Block a user