aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2012-04-11 13:01:00 -0300
committerSilvio Rhatto <rhatto@riseup.net>2012-04-11 13:01:00 -0300
commitafc5394dac9c2d75153a62f598c7108ba35f0f7c (patch)
tree71225a4f39aa5384af3bf4f5d83c048426360f95
parent8b4c297cd6dd57393dc066e80087bb1c75bd7963 (diff)
downloadfirma-afc5394dac9c2d75153a62f598c7108ba35f0f7c.tar.gz
firma-afc5394dac9c2d75153a62f598c7108ba35f0f7c.tar.bz2
Fixing EvalConfigParameter to not use quotes
-rwxr-xr-xfirma2
1 files changed, 1 insertions, 1 deletions
diff --git a/firma b/firma
index a04125e..3c40377 100755
--- a/firma
+++ b/firma
@@ -2197,7 +2197,7 @@ function EvalConfigParameter {
return 1
fi
- echo "$(grep "^$2=" $1 | sed -e "s/^$2='//" -e "s/'$//" | tail -n 1)"
+ echo "$(grep "^$2=" $1 | sed -e "s/^$2=//" | tail -n 1)"
}