diff options
author | rysiek <rysiek@example.org> | 2017-11-03 10:37:41 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-11-03 10:37:41 -0200 |
commit | 1895a47f2bdf4064787b57b5a68d6b3656a620d0 (patch) | |
tree | ee00af7865897cbbdbc793ed94aef4b92217ee5a /lib | |
parent | 497a6302db1000b6b00ef708043c3f86feb14b11 (diff) | |
download | keyringer-1895a47f2bdf4064787b57b5a68d6b3656a620d0.tar.gz keyringer-1895a47f2bdf4064787b57b5a68d6b3656a620d0.tar.bz2 |
another find usage fixed on *BSD
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/keyringer/actions/find | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/keyringer/actions/find b/lib/keyringer/actions/find index 043e80d..45b4f11 100755 --- a/lib/keyringer/actions/find +++ b/lib/keyringer/actions/find @@ -15,5 +15,5 @@ shift ARGS="`echo "$*" | sed -e "s|^/*||"`" # Run find command -cd "$KEYDIR/$RELATIVE_PATH" && find | grep -i "$ARGS" | sed -e 's|^./||g' +cd "$KEYDIR/$RELATIVE_PATH" && find ./ | grep -i "$ARGS" | sed -e 's|^./||g' cd "$CWD" |