gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r34732 - in gnunet: contrib src/gns


From: gnunet
Subject: [GNUnet-SVN] r34732 - in gnunet: contrib src/gns
Date: Sat, 20 Dec 2014 12:59:58 +0100

Author: grothoff
Date: 2014-12-20 12:59:58 +0100 (Sat, 20 Dec 2014)
New Revision: 34732

Modified:
   gnunet/contrib/gnunet-gns-import.sh
   gnunet/src/gns/gnunet-gns-proxy-setup-ca
Log:
fix #3588: avoid bash-isms

Modified: gnunet/contrib/gnunet-gns-import.sh
===================================================================
--- gnunet/contrib/gnunet-gns-import.sh 2014-12-20 02:09:37 UTC (rev 34731)
+++ gnunet/contrib/gnunet-gns-import.sh 2014-12-20 11:59:58 UTC (rev 34732)
@@ -26,7 +26,7 @@
 while getopts "c:" opt; do
   case $opt in
     c)
-      options+="-c $OPTARG"
+      options="$options -c $OPTARG"
       ;;
     \?)
       echo "Invalid option: -$OPTARG" >&2

Modified: gnunet/src/gns/gnunet-gns-proxy-setup-ca
===================================================================
--- gnunet/src/gns/gnunet-gns-proxy-setup-ca    2014-12-20 02:09:37 UTC (rev 
34731)
+++ gnunet/src/gns/gnunet-gns-proxy-setup-ca    2014-12-20 11:59:58 UTC (rev 
34732)
@@ -13,7 +13,7 @@
 while getopts "c:" opt; do
   case $opt in
     c)
-      options+="-c $OPTARG"
+      options="$options -c $OPTARG"
       ;;
     \?)
       echo "Invalid option: -$OPTARG" >&2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]