Fixes removepyc script

This commit is contained in:
Ask Solem 2011-09-14 00:51:34 +01:00
parent 92148ac03c
commit 5b2404ab0b
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"