tFIX option_value problems with "strange" values - tomb - the crypto undertaker
HTML git clone git://parazyd.org/tomb.git
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 13a9142949e8ccb4b9816cf30bc34e2c82fe6267
DIR parent f2ba4136b8295dff54b34585e09b4f70c3b327ed
HTML Author: boyska <piuttosto@logorroici.org>
Date: Sun, 21 Aug 2011 17:43:32 +0200
FIX option_value problems with "strange" values
Diffstat:
M src/tomb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/src/tomb b/src/tomb
t@@ -1188,7 +1188,7 @@ option_is_set() {
}
option_value() {
#First argument, the option (something like "-s")
- echo ${opts[$1]}
+ <<< ${opts[$1]}
}
main() {