Browse Source

Allow Python 2 and 3 to run Python files

Dave Parsons 5 years ago
parent
commit
3c990b051c
2 changed files with 2 additions and 2 deletions
  1. 1 1
      lnx-install.sh
  2. 1 1
      lnx-update-tools.sh

+ 1 - 1
lnx-install.sh

@@ -30,7 +30,7 @@ echo Patching...
 python2 ./unlocker.py
 
 echo Getting VMware Tools...
-python2 gettools.py
+python gettools.py
 cp ./tools/darwin*.* /usr/lib/vmware/isoimages/
 
 echo Finished!

+ 1 - 1
lnx-update-tools.sh

@@ -15,7 +15,7 @@ if [[ $EUID -ne 0 ]]; then
 fi
 
 echo Getting VMware Tools...
-python2 gettools.py
+python gettools.py
 cp ./tools/darwin*.* /usr/lib/vmware/isoimages/
 
 echo Finished!