Browse Source

Enable stale .pyc cleanup in upgrade.sh

Jeremy Stretch 8 years ago
parent
commit
16c582ec7a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      upgrade.sh

+ 1 - 1
upgrade.sh

@@ -18,7 +18,7 @@ fi
 # Delete stale bytecode
 COMMAND="${PREFIX}find . -name \"*.pyc\" -delete"
 echo "Cleaning up stale Python bytecode ($COMMAND)..."
-#eval $COMMAND
+eval $COMMAND
 
 # Fall back to pip3 if pip is missing
 PIP="pip"