Skip to content

Commit 0ceca7c

Browse files
Fixed clean script.
1 parent 3c656ac commit 0ceca7c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tools/clean_addon_files.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
# Clean uneeded files to pack addon ZIP for release.
44
#
55
echo "Cleaning pyo files"
6-
find -name '*.pyo' -print -exec rm '{}' ';'
6+
find .. -name '*.pyo' -print -exec rm '{}' ';'
77
echo "Cleaning pyc files"
8-
find -name '*.pyc' -print -exec rm '{}' ';'
8+
find .. -name '*.pyc' -print -exec rm '{}' ';'

0 commit comments

Comments
 (0)