From 16c582ec7af533a138dcb046dd8e39e56a019574 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Mon, 1 May 2017 16:53:51 -0400 Subject: [PATCH] Enable stale .pyc cleanup in upgrade.sh --- upgrade.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upgrade.sh b/upgrade.sh index 49f873068..85547277b 100755 --- a/upgrade.sh +++ b/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"