summaryrefslogtreecommitdiffstats
path: root/abuild-sign.in
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2016-08-20 16:11:44 +0200
committerJakub Jirutka <jakub@jirutka.cz>2016-08-23 00:09:07 +0200
commit35077b43e8ccacc50b3d2e379f57f22722eef054 (patch)
treef44e65e88381cfe1ad44f521a1de27cbcb477ed0 /abuild-sign.in
parent81c8888228fd017a9fd5d3ba6a8d1b647019eba5 (diff)
downloadabuild-35077b43e8ccacc50b3d2e379f57f22722eef054.tar.bz2
abuild-35077b43e8ccacc50b3d2e379f57f22722eef054.tar.xz
replace deprecated `...` syntax with $(...) in shell scripts
Diffstat (limited to 'abuild-sign.in')
-rw-r--r--abuild-sign.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/abuild-sign.in b/abuild-sign.in
index f333c35..b2d1bdb 100644
--- a/abuild-sign.in
+++ b/abuild-sign.in
@@ -63,7 +63,7 @@ privkey="$PACKAGER_PRIVKEY"
pubkey=
quiet=
-args=`getopt -o ek:p:qh --long installed,private:,public:,quiet,help -n "$program" -- "$@"`
+args=$(getopt -o ek:p:qh --long installed,private:,public:,quiet,help -n "$program" -- "$@")
if [ $? -ne 0 ]; then
usage
exit 2