|
[Rivet] Rivet tracker clean-up, etc. before 2.1.0 releaseDavid Grellscheid david.grellscheid at durham.ac.ukThu Feb 6 08:42:57 GMT 2014
> Correction: it fails on HepForge login for that reason (can cmake be > installed, David? That's done. I've also fixed the wildcards in bootstrap to the right form, you need "$@" instead of $* to preserve quotes. David $ function foo { for i in $*; do echo ===$i===; done } $ foo a b "c d" e ===a=== ===b=== ===c=== ===d=== ===e=== $ function foo { for i in "$*"; do echo ===$i===; done } $ foo a b "c d" e ===a b c d e=== $ function foo { for i in "$@"; do echo ===$i===; done } $ foo a b "c d" e ===a=== ===b=== ===c d=== ===e===
More information about the Rivet mailing list |