diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-06-07 14:32:28 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-06-07 14:32:28 -0300 |
commit | ee40153178ec333278cc4aa422c5b237af6d858d (patch) | |
tree | 87210cbb1f936b573724c4d203ca9d8250521bd9 | |
parent | ff089d0a64dbf280c73e2ad6b11f82d015e229bd (diff) |
Get the last path, not the first one (fixes not found on repo change)
-rwxr-xr-x | treepkg | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -85,7 +85,8 @@ bury() { # Look in all caches but pick the first one # TODO move to a toru flag (-p?) where_is() { - grep -m1 "^${1}:" "${TORUPATH}/paths" 2>/dev/null| \ + grep "^${1}:" "${TORUPATH}/paths" 2>/dev/null| \ + tail -n1 2>/dev/null|\ cut -d: -f2 2>/dev/null } |