summaryrefslogtreecommitdiffstats
path: root/abump.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 /abump.in
parent81c8888228fd017a9fd5d3ba6a8d1b647019eba5 (diff)
downloadabuild-35077b43e8ccacc50b3d2e379f57f22722eef054.tar.bz2
abuild-35077b43e8ccacc50b3d2e379f57f22722eef054.tar.xz
replace deprecated `...` syntax with $(...) in shell scripts
Diffstat (limited to 'abump.in')
-rw-r--r--abump.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/abump.in b/abump.in
index b06a933..efeb481 100644
--- a/abump.in
+++ b/abump.in
@@ -108,8 +108,8 @@ fixes=
[ -n "$APORTSDIR" ] || error "can't locate \$APORTSDIR"
git rev-parse 2>/dev/null || die "not in a git tree"
-args=`getopt -o f:s:Rkqh --long fixes:,security:,recursive,keep,quiet,help \
- -n "$program" -- "$@"`
+args=$(getopt -o f:s:Rkqh --long fixes:,security:,recursive,keep,quiet,help \
+ -n "$program" -- "$@")
if [ $? -ne 0 ]; then
usage
exit 2