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 /abuild-sign.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 'abuild-sign.in')
-rw-r--r-- | abuild-sign.in | 2 |
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 |