From 06e4ad353594c16c656adbc4b2a2753ef431cbbb Mon Sep 17 00:00:00 2001 From: Pavel Puchkin Date: Thu, 15 Dec 2011 11:52:09 +1100 Subject: [PATCH] Revert "pyclean's find now use native delete function" This reverts commit 50d80fa65e60b9e20fe6a034d2dbb4a82f927e09. --- plugins/python/python.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/python/python.plugin.zsh b/plugins/python/python.plugin.zsh index 7e670c4fb..3ea34d718 100644 --- a/plugins/python/python.plugin.zsh +++ b/plugins/python/python.plugin.zsh @@ -2,4 +2,4 @@ alias pyfind='find . -name "*.py"' # Remove python compiled byte-code -alias pyclean='find . -type f -name "*.py[co]" -delete' +alias pyclean='find . -type f -name "*.py[co]" -exec rm -f \{\} \;'