xy: use reverse sort
authorColin P. Mccabe <colin@cmccabe.xyz>
Thu, 20 Dec 2018 00:10:23 +0000 (16:10 -0800)
committerColin P. Mccabe <colin@cmccabe.xyz>
Thu, 20 Dec 2018 00:10:23 +0000 (16:10 -0800)
This is a bit of a hack, but it fixes an issue where build/ is visited before src/

xy

diff --git a/xy b/xy
index a2b9219..8fd6f50 100755 (executable)
--- a/xy
+++ b/xy
@@ -10,4 +10,4 @@ find . -noleaf -xdev -name '*.java' \
     -o -name '*.go' \
     -o -name '*.py' \
     -o -name '*.json' \
-    | grep $@ | xx
+    | grep $@ | sort -r | xx