diff options
author | Mike Gerwitz <mikegerwitz@gnu.org> | 2014-11-30 17:29:17 -0500 |
---|---|---|
committer | Mike Gerwitz <mikegerwitz@gnu.org> | 2014-11-30 21:07:14 -0500 |
commit | dfca67abe843100952700d31e41d6c43bea5c2eb (patch) | |
tree | cb9f47e0086a40f0832c4e3f34244d50a1d10fac /tools | |
parent | cc0fe11084f7b23d9df5bea6426dc1f654d319c1 (diff) | |
download | thoughts-dfca67abe843100952700d31e41d6c43bea5c2eb.tar.gz thoughts-dfca67abe843100952700d31e41d6c43bea5c2eb.tar.bz2 thoughts-dfca67abe843100952700d31e41d6c43bea5c2eb.zip |
:thoughts-fmt now forwarding options to old formatter
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/thoughts-fmt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/thoughts-fmt b/tools/thoughts-fmt index f04008f..45009e2 100755 --- a/tools/thoughts-fmt +++ b/tools/thoughts-fmt @@ -22,9 +22,10 @@ fmt-old() { - exec "$msgfmt_default" "$@" + exec "$msgfmt_default" "${all_args[@]}" } +declare -a all_args="$@" while getopts nP opt; do case "$opt" in |