diff options
author | grothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96> | 2014-12-20 11:59:58 +0000 |
---|---|---|
committer | grothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96> | 2014-12-20 11:59:58 +0000 |
commit | e6ba92f97464d605e6718ef968a744912b41a0b5 (patch) | |
tree | 935741959158dc3e2c132f01fee82885cecaa666 /contrib | |
parent | fbaf4a7da04249a3a0d3fa3bfa855b772e854bed (diff) |
fix #3588: avoid bash-isms
git-svn-id: https://gnunet.org/svn/gnunet@34732 140774ce-b5e7-0310-ab8b-a85725594a96
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/gnunet-gns-import.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/gnunet-gns-import.sh b/contrib/gnunet-gns-import.sh index 0ad3ab1d28..cd3878e112 100755 --- a/contrib/gnunet-gns-import.sh +++ b/contrib/gnunet-gns-import.sh @@ -26,7 +26,7 @@ options='' while getopts "c:" opt; do case $opt in c) - options+="-c $OPTARG" + options="$options -c $OPTARG" ;; \?) echo "Invalid option: -$OPTARG" >&2 |