aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrysiek <rysiek@example.org>2017-11-03 10:37:41 -0200
committerSilvio Rhatto <rhatto@riseup.net>2017-11-03 10:37:41 -0200
commit1895a47f2bdf4064787b57b5a68d6b3656a620d0 (patch)
treeee00af7865897cbbdbc793ed94aef4b92217ee5a
parent497a6302db1000b6b00ef708043c3f86feb14b11 (diff)
downloadkeyringer-1895a47f2bdf4064787b57b5a68d6b3656a620d0.tar.gz
keyringer-1895a47f2bdf4064787b57b5a68d6b3656a620d0.tar.bz2
another find usage fixed on *BSD
-rwxr-xr-xlib/keyringer/actions/find2
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"