Skip to content

Commit

Permalink
Remove unfortunate attempt to ignore unreadable folders in portable
Browse files Browse the repository at this point in the history
manner

This feature is more trouble than it's worth, so I'm simply removing it,
instead of trying to fix it.
  • Loading branch information
bbatsov committed Aug 7, 2015
1 parent 5b8468b commit 926d6f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projectile.el
Original file line number Diff line number Diff line change
Expand Up @@ -800,7 +800,7 @@ Files are returned as relative paths to the project root."
:group 'projectile
:type 'string)

(defcustom projectile-generic-command "find . \\! -perm /444 -prune -o \\( -type f -print0 \\)"
(defcustom projectile-generic-command "find . -type f -print0"
"Command used by projectile to get the files in a generic project."
:group 'projectile
:type 'string)
Expand Down

0 comments on commit 926d6f7

Please sign in to comment.