diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2016-08-20 16:11:44 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2016-08-23 00:09:07 +0200 |
commit | 35077b43e8ccacc50b3d2e379f57f22722eef054 (patch) | |
tree | f44e65e88381cfe1ad44f521a1de27cbcb477ed0 /abump.in | |
parent | 81c8888228fd017a9fd5d3ba6a8d1b647019eba5 (diff) | |
download | abuild-35077b43e8ccacc50b3d2e379f57f22722eef054.tar.gz abuild-35077b43e8ccacc50b3d2e379f57f22722eef054.tar.bz2 abuild-35077b43e8ccacc50b3d2e379f57f22722eef054.tar.xz abuild-35077b43e8ccacc50b3d2e379f57f22722eef054.zip |
replace deprecated `...` syntax with $(...) in shell scripts
Diffstat (limited to 'abump.in')
-rw-r--r-- | abump.in | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |