mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 21:44:16 +00:00
Fix lexicon_filter verbosity
the `mv $@.tmp $@; test -x $@ || chmod a+x $@;` bit was printing out.
This commit is contained in:
parent
8a2d6a9752
commit
dcb39af8c0
1 changed files with 3 additions and 2 deletions
|
@ -453,8 +453,9 @@ lexicon_filter: lexicon.txt lexicon_filter.in | show-SED
|
||||||
WORDBL='[[:<:]]'; WORDBR='[[:>:]]'; \
|
WORDBL='[[:<:]]'; WORDBR='[[:>:]]'; \
|
||||||
else \
|
else \
|
||||||
WORDBL='\\<'; WORDBR='\\>'; \
|
WORDBL='\\<'; WORDBR='\\>'; \
|
||||||
fi; $(SED) <lexicon.txt >>$@.tmp -n -e "s|^\([a-z][a-z][a-z][a-z]\) \([a-z_-]*\)$$|s,$$WORDBL\2$$WORDBR,@\1{\2},g|p" -e '$$G;s/.*\n/b tidy/p';
|
fi
|
||||||
mv $@.tmp $@; test -x $@ || chmod a+x $@;
|
$v $(SED) <lexicon.txt >>$@.tmp -n -e "s|^\([a-z][a-z][a-z][a-z]\) \([a-z_-]*\)$$|s,$$WORDBL\2$$WORDBR,@\1{\2},g|p" -e '$$G;s/.*\n/b tidy/p'
|
||||||
|
$v mv $@.tmp $@; test -x $@ || chmod a+x $@;
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in a new issue