Fixes removepyc script

This commit is contained in:
Ask Solem 2011-09-14 00:51:34 +01:00
parent ddae2aa201
commit 1d6806997b
1 changed files with 1 additions and 1 deletions

View File

@ -1,3 +1,3 @@
#!/bin/bash
(cd "{$1:-.}";
(cd "${1:-.}";
find . -name "*.pyc" | xargs rm -- 2>/dev/null) || echo "ok"